修改 Crontab Log rotate 的時間

Apache Log 每次 rotate 的時間, 都是早上 6:25 ~ 6:27, 要修改 Log Rotate 的時間, 要從哪改呢?

修改 Apache Log Rotate 時間

Apache 的 Log Rotate 是靠 Crontab 執行更換的, 所以就是要看每天執行 Crontab 的時間為何時.

註: 不是從 /etc/logrotate.d/apache2 設, 這邊只能設定 Log 要多久 Rotate.

  1. 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 )

  2. 將每天的執行時間, 修改成想要的時間即可.

作者: Tsung

對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.

發表迴響

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料