Hi
I had edit the
init$SID.ora with this parameters
*.audit_file_dest='/var/log/oracle/oracle_audit.log'
*.audit_sys_operations=TRUE
*.audit_trail='OS'
*.audit_syslog_level=local0.debug
reboot database
sqlplus "/as sysdba"
shutdown immediate;
startup;
config rsyslog
vi /etc/rsyslog.conf
adding
local0.* /var/log/oracle/oracle_audit.log
and control the rotation of the log so that it does not grow uncontrollably
vi /etc/logrotate.d/oracle_audit
/var/log/oracle/oracle_audit.log {
copytruncate
daily
rotate 3
compress
missingok
size 100M
create 0644 oracle dba
}
systemctl restart rsyslog
I hope help you