Apache配置调优

时间:2014-05-24 12:51:40

标签: apache config

我需要调整我的apache2 Config以同时处理1500个连接。每个请求用户都会使它永远不会结束,并且他总是获取数据,除非他从浏览器中按下停止。

我当前的配置是:

<IfModule mpm_prefork_module>
        StartServers 15
        MinSpareServers 5
        MaxSpareServers 50
        ServerLimit 5000
        MaxClients 5000
        MaxRequestsPerChild 4000
</IfModule>


<IfModule mpm_worker_module>
    ServerLimit          40
    StartServers          2
    MaxClients          1000
    MinSpareThreads      25
    MaxSpareThreads      75
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

我不知道这是否已经过调整。我还需要调整其他tan prefork_module和worker模块吗?

请注意,服务器非常强大,有12个核心和64GB Ram。

谢谢

0 个答案:

没有答案