apache 默认响应150个进程这样满足不了需求,一般需要调整

<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
#    MaxClients          150
#    MaxRequestsPerChild   0
    ServerLimit        3000
    MaxClients         3000
    MaxRequestsPerChild 100

</IfModule>