Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to configure logrotate in RHEL for tomcat6 logs. Currently, logrotate works fine for catalina.out log, it is rotated and compressed properly.

The problem is with the files with date in them like:

catalina.2012-01-20.log
catalina.2012-01-21.log
catalina.2012-01-22.log

These files are not being rotated. I understand that I have to configure these in /etc/logrotate.d/tomcat6 file where rotation for catalina.out is configured. But I am not able to configure it.

All I want is these older files to be compressed daily, except the current date log file.

Can anybody help me out on this, please!!

Thanks Noman A.

share|improve this question
Same problem, with tomcat. log-rotate sees each catalina.[date].log as a different file. It dose not group them as catalina.log. It is not rotating them. Each file comes out as catalina.[data].log.1.gz. So I end up with 200 files with the log.1.gz at the end. – nelaar Mar 15 '12 at 9:26

4 Answers

I spent a quite a while reading a lot of documentation. Log rotate does not seam to be able to group the different files with dates included in the name of the file. Logrotate can not do what we need it to do.

You have two options change the logging facility provided by java / tomcat to not include the date in the file name. http://tomcat.apache.org/tomcat-6.0-doc/logging.html

The second and quicker way is to use your own little script to do the work for you. Using find. http://serverfault.com/questions/256218/logrotation-when-filenames-includes-date, http://serverfault.com/a/256231/71120

find /pathtologs/* -mtime +5 -exec rm {} \;

I went with the second option, because our developers have coded for dates in the files names. So it needs to stay that way.

share|improve this answer

In your log rotate file, use rotate #, where # is the number of logs you want to keep before removing them.

rotate count

Log files are rotated times before being removed or mailed to the address specified in a mail directive. If count is 0, old versions are removed rather then rotated.

share|improve this answer
1  
Thanks for the reply Paul. I am passing file name as /var/log/tomcat6/catalina*.log. since the logfile name is not conistent (it has dates in it). And these files are rolled over daily by default by juli (tomcat's default). I just want to compress them using logrotate, leaving the current date log untouched and uncompressed. Hope my query is clear. Thanks for the reply again! – Noman Amir Jan 22 '12 at 16:42
The current day's log should always be left untouched. That's what logrotate does. By setting rotate #, it will remove the old ones after # many have been rotated out. If you want to compress them, as well, use the compress command in your rotate script. linuxcommand.org/man_pages/logrotate8.html – Paul Armstrong Jan 22 '12 at 16:47
1  
Hi Paul, sorry for the late comment, but I was testing this. So my config is /var/log/tomcat6/catalina*.log { daily rotate 30 compress missingok nocreate nodateext } So I assume the log should be rotated, but it is not being rotated. When I manually ran logrotate in verbose mode, got the following output: "considering log /var/log/tomcat6/catalina.2012-01-23.log log does not need rotating considering log /var/log/tomcat6/catalina.2012-01-24.log log does not need rotating Am I doing anything wrong? – Noman Amir Jan 24 '12 at 8:29
This reply doesn't address the OP's problem. rotate <count> will just rotate each day log <count> times, which is not what the OP wants to do. – cosimo Mar 14 at 9:55

Probably you can remove the date from the log file names as described in How to remove the date pattern from tomcat logs to be able to use logrotate rules.

This worked for me at least for localhost access log.

share|improve this answer

/path/to/logs/*.log { missingok compress rotate 7 }

this type of thing doesn't work normally because as others point out tomcat has its own log rotation. You can either use a simple cron to delete old files or turn off rotation on the access log valve. By turning off log rotation (and possible changing the filename patter), the above logrotate and other similar configs will work fine.

The bottom line is you should use logrotate or the built in log rotation in tomcat but not both at the same time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.