Eu configurei um servidor Syslog-ng com alguns filtros para dividir determinado tráfego em arquivos diferentes. Eu modifiquei o arquivo logrotate localizado em /etc/logrotate.d/syslog-ng
para girar esses arquivos diariamente, mas o logrotate não é executado como esperado. Eu tenho que girar manualmente os logs com sudo logrotate -f /etc/logrotate.d/syslog-ng
Não consigo encontrar o motivo pelo qual não está sendo executado automaticamente.
Conteúdo do arquivo /etc/logrotate.d/syslog-ng (a seção que eu adicionei é o melhor bloco):
/var/log/wlc /var/log/userid /var/log/cltolt040 /var/log/ise /var/log/vg /var/log/firewall /var/log/steelhead /var/log/syslog /var/log/f5 /var/log/switch /var/log/router
{
su root root
rotate 14
create 0755 ics ics
daily
missingok
notifempty
compress
postrotate
invoke-rc.d syslog-ng reload > /dev/null
endscript
}
/var/log/mail.info
/var/log/mail.warn
/var/log/mail.err
/var/log/mail.log
/var/log/daemon.log
/var/log/kern.log
/var/log/auth.log
/var/log/user.log
/var/log/lpr.log
/var/log/cron.log
/var/log/debug
/var/log/messages
/var/log/error
{
rotate 4
weekly
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
invoke-rc.d syslog-ng reload > /dev/null
endscript
}
Conteúdo do crontab:
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the 'crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
Conteúdo de /etc/cron.daily/logrotate:
#!/bin/sh
# Clean non existent log file entries from status file
cd /var/lib/logrotate
test -e status || touch status
head -1 status > status.clean
sed 's/"//g' status | while read logfile date
do
[ -e "$logfile" ] && echo "\"$logfile\" $date"
done >> status.clean
mv status.clean status
test -x /usr/sbin/logrotate || exit 0
/usr/sbin/logrotate /etc/logrotate.conf
Eu estava pensando que poderia ser um problema de permissões, mas se esse fosse o caso, a execução do logrotate -f também não funcionaria?