Apache问题处理
Posted hello word
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache问题处理相关的知识,希望对你有一定的参考价值。
1. 查看apache的错误日志
我的apache日志文件目录 /var/log/httpd/error.log
[Sun Nov 20 21:17:24 2016] [error] server reached MaxClients setting, consider raising the MaxClients setting 出现问题
2. 百度上面的问题 是因为原来是到了apache的最大连接数了。
检查了一下,这是由于并发链接数太多导致的,后来查了一下apache的文档,发现可以通过修改apache的配置文
/etc/httpd/conf/httpd.conf中的MaxClients参数来调整。
然后在httpd.conf里面配置
<IfModule prefork.c>
StartServers 100
MinSpareServers 100
MaxSpareServers 100
ServerLimit 1024
MaxClients 1024
MaxRequestsPerChild 4000
</IfModule>
3. 从这个问题学到了很多关于apache的问题,工作模式,但是我的线上服务器切换老是报错就不敢切换了,
以上是关于Apache问题处理的主要内容,如果未能解决你的问题,请参考以下文章
Apache 不在 Linux/OpenSuse 中处理 php 文件
处理多服务器日志合并处理问题多服务器的日志合并统计——apache日志的cronolog轮循