臨時解決Apache伺服器假死的引數配置

weixin_34162629發表於2015-09-08
<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假死

相關文章