我碰巧检查了生产箱配置,我注意到有两个mpm_worker_module
配置。我想只有一个协调配置。
<IfModule mpm_worker_module>
ThreadLimit 150
StartServers 2
MaxClients 400
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 150
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_event_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
这两种配置都不同。 Apache没有给出任何错误如果我运行这个命令&#39; apache2ctl configtest`。看起来对于同一模块有两种配置是有效的。但我非常确定它只需要考虑一种配置。 我想知道apache正在使用的当前配置是什么。我试图运行apache2ctl status&#39;到apache的状态我得到了以下错误。
'www-browser -dump http://localhost:80/server-status' failed.
Maybe you need to install a package providing www-browser or you
need to adjust the APACHE_LYNX variable in /etc/apache2/envvars
Forbidden
You don't have permission to access /server-status on this server.
我想知道是否有任何命令可以获取当前的mpm_worker_module
配置?
有没有可以告诉我MaxClients
值的命令?