apache开启server-status监控性能

来源:互联网 发布:qt编程语言是什么 编辑:程序博客网 时间:2024/05/22 14:21

1.开启mod_status.so 模块

cd /usr/local/apache/confvi httpd.conf
找到LoadModule status_module modules/mod_status.so去掉前面的#(默认没有,如果有就去掉)

2.配置server-status服务

方法一:

在httpd.conf加入

<location /c-server-status>         SetHandler server-status         Order Deny,Allow         Deny from nothing         Allow from all</location>

方法二:

找到#Include conf/extra/httpd-info.conf去掉前面的#

打开...apache2\conf\extra\http-info.conf 配置文件进行修改。修改内容与方式一相同

3.验证服务是否开启

访问 http://你的ip/server-status 输出如下则证明开启成功


0 0