up vote 1 down vote favorite
share [g+] share [fb]

I am running JBoss 4.0.2 server and over the years it has created a large number of log files that I would like to clean up.

I would like to keep the same logging level but also have it delete any log files older than 3 months.

Is there a way to do that in the configuration or should I just write a perl script?

Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Put this in a cron job:

find /var/log/jbossas/default/ -mtime +90 | xargs rm -f

See more on the unix find command

We also run the following in order to save disk space. It compresses all files who are at least 3 days old

find /var/log/jbossas/default/ -mtime +3 -name \*.log | xargs bzip2
link|improve this answer
I looked up the command and it looks like it will solve my problem if I just make it -mtime +90. – Ben Oct 1 '09 at 16:42
Sorry, when I created the command I had 3 days in my mind... – David Rabinowitz Oct 1 '09 at 19:15
feedback

Note that the command given will remove files older than 3 days, not 3 months.

link|improve this answer
This should be a comment instead of an answer. – migu Jul 13 '11 at 11:23
feedback

Your Answer

 
or
required, but never shown

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