1. 程式人生 > >Apache 配置日誌切割

Apache 配置日誌切割

ror 日誌切割 bin combined clas class toml nbsp test

日誌切割主要使用 apache 的 rotatelogs 工具,如下,按每天切割一次(即86400秒)

[[email protected] ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
    DocumentRoot "/data/www"
    ServerName www.test.com
    ErrorLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/test.com_error_%Y%m%d_log 86400"
    CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/test.com_access_%Y%m%d_log 86400" combined
</VirtualHost>

Apache 配置日誌切割