centos系统wdcp面板中Apache错误日志文件占磁盘问题解决方案
最近天水网络公司笔者在维护centos系统时发现,wdcp面板下的Apache错误日志文件占满了磁盘,导致网站无法登录后台。今天天水市网络公司笔者教给大家这个问题的解决方案,希望能帮你解决问题。
为了减少不必要的写操作开销,提高系统性能,需要要设置一下错误日志级别,找到httpd.conf配置文件下,比如修改文件/www/wdlinux/apache/conf/httpd.conf
LogLevel: Control the number of messages logged to the error_log.
Possible values include: debug, info, notice, warn, error, crit,alert, emerg.
LogLevel warn
其中LogLevel用于调整记于错误日志中的信息的详细程度。可以选择下列级别,依照重要性降序排列:
Level Description Example
emerg 紧急 - 系统无法使用。 “Child cannot open lock file. Exiting”
alert 必须立即采取措施。 “getpwuid: couldn’t determine user name from uid”
crit 致命情况。 “socket: Failed to get a socket, exiting child”
error 错误情况。 “Premature end of script headers”
warn 警告情况。 “child process 1234 did not exit, sending another SIGHUP”
notice 一般重要情况。 “httpd: caught SIGBUS, attempting to dump core in …”
info 普通信息。 “Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)…”
debug 出错级别信息 “Opening config file …”
默认级别是warn。建议使用 crit 级别的设置,这样只记录致命级别以上的日志,可减少垃圾日志。 把LogLevel warn更改为LogLevel crit 然后重启apache即可。
相关热词搜索: centos,wdcp,Apache,错误日志,磁盘,解决方