The Abiquo Catalina.out log can grow quickly in large environments and you may want to consider adding log rotation to this file. This can be done by creating the following file
# cat /etc/logrotate.d/abiquo_catalina
/opt/abiquo/tomcat/logs/catalina.out {
daily
missingok
rotate 20
compress
}
You may want to review the Tomcat documentation to adjust the settings to your specific requirements.
1 Comments