可以在apache的httpd.conf配置文件中配置apache自带的程序rotatelogs的功能。
rotatelogs是一个配合Apache管道日志功能使用的简单程序,
参考资料:http://httpd.apache.org/docs/current/mod/mod_log_config.html
1 每天生成新日志
CustomLog "|/usr/sbin/rotatelogs /etc/httpd/logs/access_log_%Y-%m-%d 86400 480" combined
2 日志超过一定大小生成新日志
CustomLog "|/usr/sbin/rotatelogs /etc/httpd/logs/access_log_%Y-%m-%d 5M" combined
3 rotatelogs语法
rotatelogs [ -l ] logfile [ rotationtime [ offset ]] | [ filesizeM ]
logfile
- 它加上基准名就是日志文件名。如果logfile中包含"%",则它会被视为用于
strftime()
的格式字符串;否则它会被自动加上以秒为单位的".nnnnnnnnnn"后缀。这两种格式都表示新的日志开始使用的时间。 rotationtime
- 日志文件滚动的以秒为单位的间隔时间。
offset
- 相对于UTC的时差的分钟数。如果省略,则假定为"0"并使用UTC时间。比如,要指定UTC时差为"-5小时"的地区的当地时间,则此参数应为"
-300
"。 filesizeM
- 指定以
filesizeM
文件大小滚动,而不是按照时间或时差滚动。 - 在 Windows 下的设置例子如下:
# 限制错误日志文件为 1M
ErrorLog "|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M"
# 每天生成一个错误日志文件
#ErrorLog "|bin/rotatelogs.exe logs/error-%Y-%m-%d.log 86400"
# 限制访问日志文件为 1M
CustomLog "|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 1M" common
# 每天生成一个访问日志文件
#CustomLog "|bin/rotatelogs.exe logs/access-%Y-%m-%d.log 86400" common