httpd-2.2.3中如何设置MaxClients?

httpd-2.2.3中如何设置MaxClients?

我使用了httpd-2.2.3版本,在 httpd.conf 找不到MaxClients的设置?
httpd.conf 所在的目录以及之下的文件都看看
好的,我找找,谢谢!
我用的Apache/2.2.4(源码编译),都是自己手动加上的。首先确定你选用的MPM,如果编译时没有特别指定的话,默认为prefork。下面是一个prefork的缺省设置:
<IfModule prefork.c>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
你可根据自己的实际情况进行设置,详情请参看http://man.chinaunix.net/newsoft ... ew/mod/prefork.html
在conf /e..../ httpd_mpm.conf 大概这个名字。