Techie:Techie Main/Java/Tomcat/Tomcat log file config

From FFL Wiki
Jump to navigation Jump to search

The main catalina.out log file location was changed by setting the CATALINA_OUT environment variable as follows in /etc/profile. Nothing has been done about the other log files.

CATALINA_OUT=/var/log/catalina.out

export CATALINA_OUT

/var/log/catalina.out was created as root and chown'ed to tomcat

/etc/logrotate.d/tomcat was created as follows which should, I believe, rotate the log file

/var/log/catalina.out {
 copytruncate
 daily
 rotate 7
 compress
 missingok
 size 5M
}