Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1351756
  • 博文数量: 632
  • 博客积分: 2778
  • 博客等级: 大尉
  • 技术积分: 3387
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-31 09:09
个人简介

123

文章分类

全部博文(632)

文章存档

2014年(36)

2013年(33)

2012年(563)

分类:

2012-09-25 11:27:52

原文地址:nagios监控windows主机 作者:chickenlxg


1.首先在要监控的windows主机上安装NSClient++( )

在Allowed hosts中输入监控端的ip。

在防火墙中添加12489端口的例外:

在监控端执行命令测试,如果返回数据,表示NSClient++安装正常:
# /usr/local/nagios/libexec/check_nt -H xxx.xxx.xxx.xxx -p 12489 -v UPTIME
System Uptime - 5 day(s) 1 hour(s) 34 minute(s)

2.在监控端配置对windows主机的各种系统资源的监控配置:
1)首先在nagios.cfg中配置相关的配置文件的位置
...
cfg_file=/usr/local/nagios/etc/objects/windows.cfg
...
2)配置上面定义的windows.cfg文件,定义要监控的host和service
...
define host{
        use             windows-server  ; 使用windows-server模板
        host_name       winserver       ; 定义主机名
        alias           My Windows Server       ; 定义主机别名
        address         xxx.xxx.xxx.xxx   ; 定义监控机的ip
        }

define service{
        use                     generic-service
        host_name               winserver
        service_description     NSClient++ Version
        check_command           check_nt!CLIENTVERSION
        }

define service{
        use                     generic-service
        host_name               winserver
        service_description     Uptime
        check_command           check_nt!UPTIME
        }
...

3)配置完成后使用命令检查配置文件是否有错:
# /usr/local/nagios/bin/nagios -v etc/nagios.cfg
...
Total Warnings: 0
Total Errors:   0
...

4)没有错误报告的话,重启nagios服务
service nagios restart

3.使用进行访问,查看监控状态
阅读(756) | 评论(0) | 转发(0) |
0

上一篇:vnc远程连接linux

下一篇:windows命令大全

给主人留下些什么吧!~~