临时解决Apache服务器假死的参数配置

<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>
<IfModule mpm_worker_module>
    StartServers          2
    MaxClients          150
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

在httpd.conf 里面最下面增加这2个,可以临时解决Apache假死

posted on 2015-09-08 14:53  ~紫鱼~  阅读(201)  评论(0编辑  收藏  举报