增加Apache最大连接数的方法详细介绍

itmale 2007-04-20

在httpd.conf中设置:

MaxClients n

1、apache1.x

n是整数,表示最大连接数,取值范围在1和256之间,如果要让apache支持更多的连接数,那么需要修改源码中的httpd.h文件,编辑/httpd-2.0.59/include/httpd.h中的HARD_SERVER_LIMIT值改大然后再编译。

增加apache最大连接数的方法:

在httpd.conf中设置:

MaxClients n

n是整数,表示最大连接数,取值范围在1和256之间,如果要让apache支持更多的连接数,那么需要修改源码中的httpd.h文件,把定义的HARD_SERVER_LIMIT值改大然后再编译

2、apache2.x

系统默认150个连接数,下面的例子修改为1500个。

修改httpd.conf文件

找到

<IfModule prefork.c>
StartServers       8
MinSpareServers    5
MaxSpareServers   20
MaxClients       150
MaxRequestsPerChild  1000
</IfModule>
修改
MaxClients       150
为
ServerLimit        1500
MaxClients         1500

然后保存退出。

重新启动http服务(/etc/rc.d/init.d/httpd restart)

相关推荐