Recently, what we observed was.. the audit files under grid_home were generating too many.
GRID_HOME/rdbms/audit....
By default in 11g the audit_sys_operations is "FALSE" but as you upgrade/go to 12C then this is "TRUE"
Having said that, this will be logging all the audit activity when ever something log's in... so we need to set this to "FALSE"
> alter system set audit_sys_operations=FALSE" scope=spfile. --- this need a bounce..
once this is done.... this will slow down the audit info writing to the files.... but it will still generate the files...
as per oracle..this is a BUG....
Large Number of Audit Files are getting generated in 12c Oracle Restart (Doc ID 2049448.1)
so we need to apply... this doesn't require any bounce of crs....
1 crsctl
modify resource ora.asm -attr
START_DEPENDENCIES="hard(ora.cssd)" –unsupported (for 12c)
1 crsctl
modify resource ora.asm -attr
START_DEPENDENCIES="hard(ora.cssd)" (for 11g)...
monitor the directory for the change....
Hope this Helps.....
No comments:
Post a Comment