每次logrotate
运行Apache / 2.4.7(Ubuntu)时都会遇到段错误,并且不会重新启动:
[Wed Sep 10 06:35:54.266018 2014] [mpm_event:notice] [pid 20599:tid 140630283466624] AH00493: SIGUSR1 received. Doing graceful restart
[Wed Sep 10 06:35:54.885118 2014] [core:notice] [pid 20599] AH00060: seg fault or similar nasty error detected in the parent process
我的Apache logrotate脚本如下所示:
/var/log/apache2/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/usr/sbin/apachectl graceful
endscript
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
}
/srv/apache/log/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/usr/sbin/apachectl graceful
endscript
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
}
我保留默认日志/var/log/apache2
,但将虚拟主机特定的日志(针对此服务器上托管的三个不同虚拟主机)保留在/srv/apache/log
目录中(例如mysite1_error.log
,mysite1_access.log
,mysite2_error.log
,mysite2_access.log
....)。
相关部分 /etc/apache2/apache.conf
:
#/etc/apache2/apache.conf
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel trace8 # I set to try and get more info about this problem.
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
在哪里export APACHE_LOG_DIR=/var/log/apache2$SUFFIX
。在我的vhost conf文件中,例如
/etc/apache2/sites-enabled/mysite1.conf
:
#/etc/apache2/sites-enabled/mysite1.conf
LogLevel debug
ErrorLog /srv/apache/log/mysite1_error.log
CustomLog /srv/apache/log/mysite2_access.log combined
其他网站也是如此。
有人知道为什么logrotate导致此崩溃吗?
还有一件事:
手动强制将logrotate作为根用户:
logrotate -v -f /etc/logrotate.d/apache2
不会导致seg错误,但我知道它是logrotate,因为我尝试过与时间(每周,每天)一起玩,并且seg错误总是恰好发生在仅旋转日志的情况下。
如何按需繁殖
# Set a crontab to run each minute (simulating cron.daily run of logrotate)
crontab -e
*/1 * * * * root /usr/sbin/logrotate -v -f /etc/logrotate.d/apache2 > /home/myuser/logrotate.log 2>&1
最后
如果我注释掉seg中的/srv/apache/log/*.log
旋转块,/etc/logrotate.d/apache
也不会发生故障。
/usr/sbin/apachectl graceful
手动在cmd行上不会造成任何问题(还请注意,该行最初是/etc/init.d/apache2 reload > /dev/null
但在遇到seg错误后,我改成apachectl
在线阅读的建议,显然它不能解决问题)。LogLevel已在文件中trace8
设置为全局最高级别apache.conf
。
/etc/logrotate.d/httpd-prerotate
不存在。
/usr/sbin/apachectl graceful
在由logrotate发出而不是在手动发出时引起段错误吗?奇数
/usr/sbin/apachectl graceful
罪犯(理论上/etc/logrotate.d/httpd-prerotate中的脚本也是候选者)。您可以通过/usr/sbin/apachectl graceful
手动运行确认吗?当Apache的全局错误日志(或全局syslog)中发生这种情况时,是否还有其他提示?也许不仅在<VirtualHost>中而是在全局范围内增加LogLevel时?