It’s one of the dumbest things you can ever get called out in the middle of the night for – because a filesystem has filled up. Dumb, because it’s preventable and because you shouldn’t be the one doing housework. It’s a computer – its whole purpose is to do the work for you.
The logrotate script was created to monitor, archive and delete log files so you don’t have to. It is an absolutely vital utility with which, in theory, a Linux host could run literally forever without maintenance. It’s installed in the base bundle on all major versions of Linux.
The key things you need to know is that the logrotate process is called by the cron daemon, with the wrapper script located at:
/etc/cron.daily/logrotate
And each logfile (or set of logfiles) which is to be monitored and archived has its own logrotate configuration file under:
/etc/logrotate.d/
Every time the logrotate program is executed by cron, it checks every monitored logfile against the conditions in the logrotate.d configuration, and then copies it aside, with a number added as an extension, while resetting the original logfile size to zero.
Continue reading

























