解决某些浏览器导致apache慢或假死问题
技术支持服务电话:15308000360 【7x24提供运维服务,解决各类系统/软硬件疑难技术问题】
在复杂的网络环境中,浏览器是百花齐放,各式各样。目前还有微信和QQ等内嵌浏览器,使用中我们的webserver会遇到不同的问题,今天就遇到了一个微信浏览器访问站点导致网站变慢以至apache挂起的情况,试验中我们也发现IE10浏览器也经常会导致同样的问题。 下面提供一个解决方法:
1、打开conf/httpd.conf
2、查找
#AcceptFilter http none #AcceptFilter https none3、修改为
AcceptFilter http none AcceptFilter https none添加以上参数可以解决某些浏览器导致apache慢或者假死不响应的情况,提高兼容性。
4、查找
<ifmodule mpm_winnt_module="">
ThreadsPerChild 1920
MaxConnectionsPerChild 100000
</ifmodule>
5、修改为
<ifmodule mpm_winnt_module="">
ThreadsPerChild 500
MaxConnectionsPerChild 100000
</ifmodule>
此处主要是为了解决开启了AcceptFilter参数后如果ThreadsPerChild的值大于512会频繁重启apache的问题,ThreadsPerChild是apache工作进程的线程数最大值到1920超出后会报错,MaxConnectionsPerChild是工作进程最大处理多少请求后载入新的进程。 备注:如果加了AcceptFilter https none不能使用ssl的情况重新注释为#AcceptFilter https none