How to Rotate or Disable Logging in EmbeddedLDAPAccess.log in Weblogic

Solution:


The log file EmbeddedLDAPAccess.log is controlled by the parameters the are defined in <Domain_Home>/servers/<Server_Name>/data/ldap/conf/vde.prop. The following attributes should be added to vde.prop to rotate EmbeddedLDAPAccess.log, and the rotation will only happen once a day:

vde.logfile=log/EmbeddedLDAP.log
vde.logrotate.hour=0
vde.logrotate.minute=10
vde.logrotate.maxlogs=7
vde.accesslogfile=log/EmbeddedLDAPAccess.log


Disable logging to this file by removing the file name from the following line

 vde.accesslogfile=log/EmbeddedLDAPAccess.log to be vde.accesslogfile= in <Domain_Home>/servers/<Server_Name>/data/ldap/conf/vde.prop.







If you like please follow and comment