清除error.log、access.log并限制apache日志 文件 大小的 方法 ,在网上搜了下相应的资料,并按照如下步骤做了一遍,网站恢复正常 第一步:停止apache服务的所有进程,删除 apache2/logs/目录下的 error.log、access.log 文件 第二步:打开 apache 的 httpd.c
清除error.log、access.log并限制apache日志文件大小的方法,在网上搜了下相应的资料,并按照如下步骤做了一遍,网站恢复正常
第一步:停止apache服务的所有进程,删除 apache2/logs/目录下的 error.log、access.log文件
第二步:打开 apache 的 httpd.conf配置文件并找到下面两条配置
errorlog logs/error.log
customlog logs/access.log common
直接注释掉,换成下面的配置文件。
# 限制错误日志文件为 1m
errorlog |bin/rotatelogs.exe -l logs/error-%y-%m-%d.log 1m”
# 每天生成一个错误日志文件
#errorlog |bin/rotatelogs.exe -l 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 -l logs/access-%y-%m-%d.log 86400 common