nginx 开启了日志,但是日志当自动打包后,将无法记录日志信息。
先查看配置
vim /etc/logrotate.d/nginx
/var/log/nginx/*log {
daily
rotate 10
missingok
notifempty
compress
sharedscripts
postrotate
/bin/kill -USR1 $(cat /var/run/nginx.pid 2>/dev/null) 2>/dev/null || :
endscript
}
这里/var/run/nginx.pid是记录当前nginx的pid,pid位置为默认位置,所以logrotate无法找到pid文件,导致nginx无法重载。
解决方法:
修改nginx.conf中pid保存的位置,和默认的位置保持一致