Using logrotate
- create configuration file:
bash-3.2# cat /etc/logrotate.d/myconf-logrotate.conf PATH_TO_FILE/LOG.FILE { daily missingok rotate 10 compress delaycompress compresscmd /usr/bin/gzip notifempty copytruncate }
- Testing configuration
logrotate /etc/logrotate.conf --force -d
- Add a crontab job. A job will be run every hour.
export EDITOR=vi crontab -e >> 0 * * * * /usr/sbin/logrotate /etc/logrotate.conf --force > /dev/null 2>&1
Sources:
- man logrotate.conf and man logrotate
- Crontab Generator
- How to Use logrotate to Manage Log Files