我在Digital Ocean VPS上运行Ubuntu 14.04 LTS和Nginx,偶尔收到这些有关cron作业失败的电子邮件:
学科
Cron测试-x / usr / sbin / anacron || (cd / && run-parts --report /etc/cron.daily)
电子邮件的正文为:
/etc/cron.daily/logrotate:错误:为/var/log/nginx/*.log运行部分运行共享的postrotate脚本时出错:/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
脚本