Tomcat allows you to rotate easily your log files with AccessLogValve but it can be more difficult to get cleaning in logs directories automatically.
For that, you can easily use some smart find commands combined with actions:
- Get logs older than 3 days compressed so they can be smaller but still accessible
find /var/log/tomcat/ -mtime +3 -regex ".*\.\(log\|txt\)$" -exec gzip "{}" \;
- Get logs older than 60 days deleted permanently
find /var/log/tomcat/ -mtime +60 -name "*.gz" -exec rm "{}" \;
You will probably have to adjust the logs path depending on your needs, and you can also modify the retention time for each action.
Once the command looks correct with what you’re expecting, you can set them up as cron so it can be executed automatically every day.