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

Nagios 监控windows server Apache 服务

时间:2015-07-14 17:48:43      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

  1. 监控机需要使用check_apachestatus.pl插件
    插件下载地址:
    https://exchange.nagios.org/directory/Tutorials/Other-Tutorials-And-HOWTOs/Monitoring-Apache-Session-load-with-Nagios-through-mod_status/details

  2. 需要到windows 服务器上修改apache配置文件

    LoadModule status_module modules/mod_status.so

    <IfModule mod_status.c>
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from Nagios_server_ip
    </Location>
    ExtendedStatus On
    </IfModule>

  3. 重启windows 服务器上的Apache,回到Nagios监控机,进入插件目录
    ./check_apachestatus.pl -H Windows_server_ip
    技术分享
  4. 回到主服务器定义执行命令
    define command{
            command_name    check_apache
            command_line    $USER1$/check_apachestatus.pl -H "$HOSTADDRESS$"
    }

     

    define service{
            use                     generic-service
            host_name               Windows
            service_description     apache
            check_command           check_apache
            }

     

Nagios 监控windows server Apache 服务

标签:

原文地址:http://www.cnblogs.com/Mrhuangrui/p/4645875.html

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