Saya mencoba membuat logrotate untuk bekerja pada VPS saya untuk memutar file apache saya setiap minggu. Saat ini isi dari file konfigurasi apache2 adalah seperti itu.
"/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
}
Saya telah meninggalkannya selama dua minggu sekarang dan tidak ada yang berubah sejauh yang saya tahu. Ketika saya mensimulasikannya dari baris perintah saya mendapatkan output berikut.
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
Adakah gagasan tentang kesalahan konfigurasi Iv'e?
File status saya juga kosong :(
user@geneva:~$ cat /var/lib/logrotate/status
logrotate state -- version 2
Memperbarui
Saya menghapus file status dan menjalankan logrotate secara paksa dan sekarang lognya terlihat seperti diputar dan file status terlihat lebih menjanjikan!
sudo rm /var/lib/logrotate/status
sudo /usr/sbin/logrotate -f /etc/logrotate.conf