码迷,mamicode.com
首页 > 数据库 > 详细

限制Apache日志access.log文件大小

时间:2015-05-02 09:29:38      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

可以在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

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

限制Apache日志access.log文件大小

标签:

原文地址:http://www.cnblogs.com/jikao100/p/4471520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!