ฉันใช้ Ubuntu 14.04 LTS และ nginx ใน Digital Ocean VPS และได้รับอีเมลเหล่านี้เป็นครั้งคราวเกี่ยวกับงาน cron ที่ล้มเหลว:
เรื่อง
การทดสอบ Cron -x / usr / sbin / anacron || (cd / && run-parts --report /etc/cron.daily)
เนื้อหาของอีเมลคือ:
/etc/cron.daily/logrotate: ข้อผิดพลาด: ข้อผิดพลาดในการรันสคริปต์ postrotate ที่ใช้ร่วมกันสำหรับ '/var/log/nginx/*.log' run-parts: /etc/cron.daily/logrotate ออกมาพร้อมกับรหัสส่งคืน 1
มีความคิดเห็นเกี่ยวกับวิธีการแก้ไขปัญหานี้หรือไม่?
ปรับปรุง:
/var/log/nginx/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 0640 www-data adm
sharedscripts
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi
endscript
postrotate
invoke-rc.d nginx rotate >/dev/null 2>&1
endscript
}
ปรับปรุง:
$ sudo invoke-rc.d nginx rotate
initctl: invalid command: rotate
Try `initctl --help' for more information.
invoke-rc.d nginx rotate
ล้มเหลวลองใช้งานในฐานะผู้ใช้ที่เหมาะสมและแสดงสคริปต์นั้นให้เราทราบแล้ววางผลลัพธ์ลงในคำถามเดิมของคุณ TKS
/etc/logrotate.d/nginix
สคริปต์ของคุณให้กับเรา