Rotatelogs 不起作用

Rotatelogs 不起作用

我的系统是 Debian,Apache 2.22

我正在尝试使用 rotatelogs 轮换我的日志。日志文件中的格式可以正常工作,但轮换不起作用。

apache2.conf 的一部分

 LogFormat "%h %t %m %U %q %>s %B \"%{Referer}i\"" custom 
 CustomLog "|/usr/sbin/rotatelogs /var/log/apache2/access_log 60" custom 

这里有错误吗?

先感谢您。

答案1

有两件事:

  1. Apache 日志事件

    LogFormat "%h %t %m %U %q %>s %B \"%{Referer}i\"" custom
    LogLevel warn
    CustomLog ${APACHE_LOG_DIR}/access_log custom 
    
  2. Logrotate 日志旋转

文件 /etc/logrotate.d/apache2

/var/log/apache2/*.log {
       daily
       missingok
       rotate 14
       compress
       delaycompress
       notifempty
       create 640 root adm
       sharedscripts
       postrotate
               if /etc/init.d/apache2 status > /dev/null ; then \
                   /etc/init.d/apache2 reload > /dev/null; \
               fi;
       endscript
       prerotate
               if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
                       run-parts /etc/logrotate.d/httpd-prerotate; \
               fi; \
       endscript
}

相关内容