私はVPSでlogrotateを動作させて、Apacheファイルを毎週ローテーションしようとしています。現在、apache2構成ファイルの内容はそのままです。
"/var/www/user/site.com/logs/*.log" {
weekly
missingok
rotate 8
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/etc/init.d/apache2 reload > /dev/null
endscript
}
私は今2週間それを残しました、そして、私が知ることができる限り、何も変わりませんでした。コマンドラインからシミュレートすると、次の出力が表示されます。
user@geneva:/var/lib/logrotate$ /usr/sbin/logrotate -d /etc/logrotate.d/apache2
reading config file /etc/logrotate.d/apache2
reading config info for "/var/www/user/site.com/logs/*.log"
Handling 1 logs
rotating pattern: "/var/www/user/site.com/logs/*.log" weekly (8 rotations)
empty log files are not rotated, old logs are removed
considering log /var/www/user/site.com/logs/access.log
log does not need rotating
considering log /var/www/user/site.com/logs/error.log
log does not need rotating
not running postrotate script, since no logs were rotated
Iv'eの構成が間違っているというアイデアはありますか?
私のステータスファイルも空です:(
user@geneva:~$ cat /var/lib/logrotate/status
logrotate state -- version 2
更新
ステータスファイルを削除し、logrotateを強制実行したところ、ログはローテーションされたように見え、ステータスファイルはより有望に見えます!
sudo rm /var/lib/logrotate/status
sudo /usr/sbin/logrotate -f /etc/logrotate.conf