Apache最大连接数/apache并发数修改方法

四月 01, 2019 | views
Comments 0

使用apache的朋友可能会经常碰到要调整apache环境的连接数与并发数下面我来给大家介绍怎么修改连接数/apache并发数.

Apache的最大连接数,默认为256个。修改apache的最大连接数,方法如下:

步骤一:先修改 /path/apache/conf/httpd.conf文件。


  1. # vi httpd.conf 
  2. 将“#Include conf/extra/httpd-mpm.conf”前面的 “#” 去掉,保存。 

步骤二:再修改 /path/apache/conf/extra/httpd-mpm.conf文件。



  1. # vi httpd-mpm.conf 

找到 这一行,找到文件 /etc/httpd/conf/httpd.conf 并修改下面参数,将默认的256改成1000



  1. KeepAliveTimeout 15 
  2. ## 
  3. ## Server-Pool Size Regulation (MPM specific) 
  4. ## 
  5. # prefork MPM 
  6. # StartServers: number of server processes to start 
  7. # MinSpareServers: minimum number of server processes which are kept spare 
  8. # MaxSpareServers: maximum number of server processes which are kept spare 
  9. # ServerLimit: maximum value for MaxClients for the lifetime of the server 
  10. # MaxClients: maximum number of server processes allowed to start 
  11. # MaxRequestsPerChild: maximum number of requests a server process serves 
  12. StartServers 8 
  13. MinSpareServers 5 
  14. MaxSpareServers 20 
  15. ServerLimit 1000 
  16. MaxClients 1000 
  17. MaxRequestsPerChild 4000 
  18. ServerLimit 该指令一定要放在第一行。 

修改后,一定不要apachectl restart,而是先 apachectl stop 然后再 apachectl start才可以。




zend