标签:链接 apach 百度 name 参数 http art ror min
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的问题,工作模式,但是我的线上服务器切换老是报错就不敢切换了,
标签:链接 apach 百度 name 参数 http art ror min
原文地址:http://www.cnblogs.com/shaoshao/p/6088415.html