apache并发连接数优化

vi /etc/httpd/conf.d/httpd-mpm.conf
<IfModule mpm_prefork_module>
StartServers         5
MinSpareServers      5
MaxSpareServers      10
ServerLimit          5500
MaxClients           5000
MaxRequestsPerChild  100
</IfModule>

services httpd restart

THE END