Heim  >  Artikel  >  Datenbank  >  Apache下access.log和error.log文件太大的处理方法

Apache下access.log和error.log文件太大的处理方法

WBOY
WBOYOriginal
2016-06-07 15:36:441727Durchsuche

清除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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn