以前、CentOS6でcron.dailyの設定を行う方法を紹介しましたが、今回は、httpdでdaily・圧縮ログローテーションする為の設定方法を紹介します。

/etc/logrotate.confの設定は、下記に設定しています。

daily
create
dateext
compress

下記は、デフォルト設定となります。

/etc/logrotate.d/httpd

/var/log/httpd/*log /var/log/httpd/*/*log {
missingok
notifempty
sharedscripts
delaycompress
postrotate
/sbin/service httpd reload > /dev/null 2>/dev/null || true
endscript
}

上記で、ログローテーションを行ったのですが、正常に圧縮ができませんでした。
調査したところ delaycompress コマンドを設定していたため、圧縮ができてませんでした。

そこで、設定を下記のように変更しました。

/var/log/httpd/*log {
daily
missingok
ifempty
sharedscripts
postrotate
/sbin/service httpd reload > /dev/null 2>/dev/null || true
endscript
}

以上で、ローテーション後に圧縮ができました。

こちらの記事はなかの人(be_hase)監修のもと掲載しています。
元記事は、こちら