我win32的apache     我设置那MaxClients   怎么总是出错呀?

我win32的apache     我设置那MaxClients   怎么总是出错呀?


<IfModule   mpm_winnt.c>
MaxClients   500
ThreadsPerChild   400
MaxRequestsPerChild     0
</IfModule>


我设置了这个后,,,就启动不了apache那,,好像说找不到模块!

可是我的其他模块都可以找到呀,,,我把

MaxClients   500   去掉就ok那!     我想增加些连接数,     我的apache是   2.0.59


MaxClients在worker.c中配置
<IfModule   worker.c>
    MaxClients   500
</IfModule>
<IfModule   mpm_winnt.c>
    ThreadsPerChild   400
    MaxRequestsPerChild   0
</IfModule>

可以好好研究一下这篇文档:
http://www.devside.net/articles/apache-performance-tuning
一般情况下是不建议修改这些参数的