Ask Your Question
2

Is it possible to stop Tomcat from overwriting catalina.out upon restarting?

asked 2021-10-27 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-06-27 22:00:00 +0000

ladyg gravatar image

Yes, it is possible to stop Tomcat from overwriting catalina.out upon restarting.

One way to accomplish this is by creating a symbolic link for catalina.out, pointing it to a different file. This way, Tomcat will write logs to the new file, and the old catalina.out file will remain untouched.

To create a symbolic link, you can use the command:

ln -s /path/to/new/log/file /path/to/catalina.out

Make sure to replace /path/to/new/log/file with the path to the new log file and /path/to/catalina.out with the path to the catalina.out file.

Another option is to configure Tomcat to use a different logging strategy altogether. For example, you could use log4j or logback to handle logging instead of the default logging mechanism. This way, you can control where the logs are written and how they are formatted.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-27 11:00:00 +0000

Seen: 20 times

Last updated: Jun 27 '21