Sempre que logrotate
executa o Apache / 2.4.7 (Ubuntu) experimenta uma falha seg e não reinicia:
[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
Meu script apache logrotate se parece com:
/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
}
Eu mantenho os logs padrão em /var/log/apache2
, mas mantenho logs específicos de vhosts (para os três vhosts diferentes hospedados neste servidor) no diretório /srv/apache/log
(por exemplo, mysite1_error.log
, mysite1_access.log
, mysite2_error.log
, mysite2_access.log
....).
As partes relevantes de /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
em que export APACHE_LOG_DIR=/var/log/apache2$SUFFIX
. Nos meus arquivos vhost conf, como
/etc/apache2/sites-enabled/mysite1.conf
tenho:
#/etc/apache2/sites-enabled/mysite1.conf
LogLevel debug
ErrorLog /srv/apache/log/mysite1_error.log
CustomLog /srv/apache/log/mysite2_access.log combined
e semelhante para os outros sites.
Alguém sabe por que o logrotate está causando esse problema?
Mais uma coisa:
Forçando manualmente o logrotate como root:
logrotate -v -f /etc/logrotate.d/apache2
não causa a falha seg, mas eu sei que é logrotate como eu tentei brincar com os tempos (semanalmente, diariamente) e a falha seg sempre ocorre exatamente como os logs estão sendo girados apenas.
Como reproduzir sob demanda
# 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
Finalmente
Se eu comentar o bloco de rotação /srv/apache/log/*.log
em /etc/logrotate.d/apache
, a falha seg também não ocorrerá.