Apache Log 每次 rotate 的時間, 都是早上 6:25 ~ 6:27, 要修改 Log Rotate 的時間, 要從哪改呢?
修改 Apache Log Rotate 時間
Apache 的 Log Rotate 是靠 Crontab 執行更換的, 所以就是要看每天執行 Crontab 的時間為何時.
註: 不是從 /etc/logrotate.d/apache2 設, 這邊只能設定 Log 要多久 Rotate.
- vim /etc/crontab
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly ) - 將每天的執行時間, 修改成想要的時間即可.