目前,我正在查看Apache日志变得越来越大的文件大小。在我的logrotate配置中,我已delaycompress
启用。Apache是否真的需要这样做(如logrotate文档所述,某些程序仍在旧文件中写入),或者禁用它是否安全delaycompress
?
这是我的logrotate配置:
/var/log/apache2/*.log {
weekly
missingok
rotate 26
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
}