ฉันกำลังพยายามให้ logrotate ทำงานบน VPS ของฉันเพื่อหมุนไฟล์ 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
}
ฉันทิ้งไว้สองสัปดาห์แล้วและไม่มีอะไรเปลี่ยนแปลงเท่าที่ฉันจะบอกได้ เมื่อฉันจำลองจากบรรทัดคำสั่งฉันได้รับผลลัพธ์ต่อไปนี้
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