以前、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 } 上記で、ログローテーションを行ったのですが、正常に圧縮ができませんでした。