apache2.0之后的版本连接数设置在哪

apache2.0之后的版本连接数设置在哪

我的httpd.conf文件没有类似MaxClients,MaxRequestsPerChild  这些东西

我也不想什么mod,然后重新编译

就想直接修改某个地方达到增大连接数的目的

问:这个地方是哪个地方?
httpd.conf
search httpd-mpm.conf
extra/httpd-mpm.conf
大哥,没有这个文件啊
在相应核心模块的配置选项中,
加: ServerLimit  n(最大连接数)
其余的根据机子的性能看着配


列如:

原先的:
<IfModule prefork.c>
StartServers         5
MinSpareServers      5
MaxSpareServers     10
MaxClients         150
MaxRequestsPerChild  0
</IfModule>

修改后:

<IfModule prefork.c>
ServerLimit   1000
StartServers         5                (根据机子性能配)
MinSpareServers      5            (根据机子性能配)
MaxSpareServers     10          (根据机子性能配)
MaxClients         800               (根据机子性能配)
MaxRequestsPerChild  10000
</IfModule>