Need to do something to handle crazy volume of log files that can fill disks rapidly.
e.g. add the following to /etc/logrotate.conf to match other LDAP servers:
# rotate log files weekly
weekly
maxsize 200M
...
# uncomment this if you want your log files compressed
compress
compresscmd /bin/bzip2
uncompresscmd /bin/bunzip2
compressoptions -9
compressext .bz2
Need to do something to handle crazy volume of log files that can fill disks rapidly.
e.g. add the following to
/etc/logrotate.confto match other LDAP servers:...