- Code: Alles auswählen
srv01:/etc/logrotate.d# more apache2
/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
if [ -f /var/run/apache2.pid ]; then
/etc/init.d/apache2 restart > /dev/null
fi
endscript
}
srv01:/etc/logrotate.d#
- Code: Alles auswählen
debian:/var/spool/cron/crontabs# more /etc/logrotate.d/apache2
/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
if [ -f /var/run/apache2.pid ]; then
/etc/init.d/apache2 restart > /dev/null
fi
endscript
}
debian:/var/spool/cron/crontabs#
auch die jeweiligen zeilen in den einzelnen vhost-confs sehen gleich aus
CustomLog /var/log/apache2/blabla-access.log combined
der fehler muss also woanders liegen.
es ist ein apache2.2 mit debian-installation (etc).
wo koennte ich noch nach fehlern suchen?