Log files in /var/log/apache2/ are too big. I want to limit the file size. Is it possible to store only the recent 100 lines?

Thanks.

link|improve this question

This question is better suited to serverfault.com – darin Feb 20 '11 at 9:54
feedback

migrated from stackoverflow.com Feb 20 '11 at 13:30

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 6 down vote accepted

Take a look here:

http://httpd.apache.org/docs/2.0/programs/rotatelogs.html

You can save a logfile per day and delete old ones automatically with a cronjob. The lines can be done with a limitation of the file size (I think it is not necessary of it will be 120 or 100 lines?).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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