码迷,mamicode.com
首页 > Web开发 > 详细

apache 监控

时间:2017-06-16 14:20:41      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:内容   服务器   端口   文件   base   style   ip地址   版本   时间   

当前加载模块

[root@controller01 ~]# httpd -l
Compiled in modules:
core.c
mod_so.c
http_core.c

 

当前版本
[root@controller01 ~]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Nov 14 2016 18:04:44

 

 

查看当前连接数

[root@controller01 ~]# netstat -ant | grep ":80 " | wc -l
5

 

配置apache自带监控

2.4模块路径都在此文件夹下

/etc/httpd/conf.modules.d/

确认00-base.conf 中包含LoadModule status_module modules/mod_status.so

 

 在httpd.conf文件底部分添加以下内容:

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

ExtendedStatus On

简单解释下上面信息

<location /c-server-status>  : c-server-status 这个名字可以任意的取,但最好不要被别人猜到。

Deny from   表示禁止的访问地址;nothing 表示没有禁止访问的地址 。
Allow from   表示允许的地址访问;all 表示所有的地址都可以访问。

ExtendedStatus On   表示的是待会访问的时候能看到详细的请求信息,另外该设置仅能用于全局设置,不能在特定的虚拟主机中打开或关闭。启用扩展状态信息将会导致服务器运行效率降低。

 

 

 

重启服务

http://你的IP地址:端口/c-server-status 

http://你的IP地址:端口/c-server-status?refresh=N(N为每秒刷新时间) 

 

 

apache 监控

标签:内容   服务器   端口   文件   base   style   ip地址   版本   时间   

原文地址:http://www.cnblogs.com/menkeyi/p/7027013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!