从 shell 显示已加载的 ServerLimit 和 MaxClients 值?

从 shell 显示已加载的 ServerLimit 和 MaxClients 值?

是否有命令可以显示这些指令的当前(在 ssh 中)加载的设置?

Apache2,debian6

谢谢

答案1

我在你的 apache 中有(并加载了)mod_info 模块,尝试访问http://localhost/服务器信息页。

答案2

curl -s http://localhost/server-status | grep requests | perl -wlne'm/dt>(.*)<\/dt/i && print $1'`

相关内容