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

From FFL Wiki
Revision as of 08:21, 13 March 2014 by Phallus (talk | contribs) (Created page with '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.…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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
}