都是prefork模式,为什么http 统计数量不一样

都是prefork模式,为什么http 统计数量不一样

2个 不同conf ,都是 测试机器, 没有外部用户访问

配置1 执行 ps -ef |grep httpd |wc -l   结果 12
配置2 执行 ps -ef |grep httpd |wc -l   结果 70



配置1    直接在 httpd.conf 配置
<IfModule prefork.c>
StartServers       5
MinSpareServers    50
MaxSpareServers   100
ServerLimit      100
MaxClients     150
MaxRequestsPerChild  0
</IfModule>


配置2  通过httpd.conf  载入 httpd-mpm.conf载入

<IfModule mpm_prefork_module>
StartServers          5
MinSpareServers       50
MaxSpareServers      100
MaxClients          150
MaxRequestsPerChild   0
</IfModule>

进程与线程的区别,是否有访问也很关键