Apache 配置日志切割
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 配置日志切割相关的知识,希望对你有一定的参考价值。
日志切割主要使用 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 配置日志切割的主要内容,如果未能解决你的问题,请参考以下文章