摘要:摘要 本文介绍了如何使用nagios通过nsclient监控windows主机。 此次实验环境基于上篇文章,监控端在Linux环境下,Windows服务器使用的时windows server 2012。1. 安装NSClient++ 访问http://nsclient.org/nscp/下载NSClient++,这里我使用的是NSCP-0.4.3.143-x64的msi安装包。
摘要
本文介绍了如何使用nagios通过nsclient监控windows主机。
此次实验环境基于上篇文章,监控端在Linux环境下,Windows服务器使用的时windows server 2012。
1. 安装NSClient++
访问http://nsclient.org/nscp/下载NSClient++,这里我使用的是NSCP-0.4.3.143-x64的msi安装包。下载之后直接安装,过程中会提示输入Nagios监控服务器地址和密码。地址填写正确,密码不用设置。Nagios监控服务器事先在监控Linux服务器时候已经搭建好,需要的小伙伴看这里。
2.配置NSClient++
在 NSClient++ 的安装目录打开 nsclient.ini,将监控服务器的IP地址加到 allowed hosts 指令后面。
然后检查下12489端口是否正常监听
netstat -an | more
因为安装时候需要的模块已经勾选了,所以配置文件中不用再作设置。否则可以通过去掉每个模块前的;来启用该模块。
到这里即完成了Windows Server 2012上的配置。接下来我们设置Nagios监控服务器。
3.Nagios监控服务器设置
vi /usr/local/nagios/etc/nagios.cfg
搜索找到:
Definitions for monitoring a Windows machine
cfg_file=/usr/local/nagios/etc/objects/windows.cfg
将第二行的#去掉打开Nagios监控的Windows模块,然后保存。
接着编辑
找到并设置监控的服务器:
设置被监控主机名和被监控的Windows服务器地址。
此地址为Linux服务端的ip地址
vi /usr/local/nagios/etc/objects/windows.cfg define host{ use windows-server ; Inherit default values from a template host_name winserver ; The name we\'re giving to this host alias My Windows Server ; A longer name associated with the host address 192.168.0.2 ; IP address of the host }
接下来搜索各种监控的服务并设置:
#监控NSClient版本。 Create a service for monitoring the version of NSCLient++ that is installed Change the host_name to match the name of the host you defined above define service{ use generic-service host_name winserver service_description NSClient++ Version check_command check_nt!CLIENTVERSION } #监控服务器在线时间。 Create a service for monitoring the uptime of the server Change the host_name to match the name of the host you defined above define service{ use generic-service host_name winserver service_description Uptime check_command check_nt!UPTIME } #监控服务器CPU负载。 Create a service for monitoring CPU load Change the host_name to match the name of the host you defined above define service{ use generic-service host_name winserver service_description CPU Load check_command check_nt!CPULOAD!-l 20,30,50 } #监控服务器的内存占用。 Create a service for monitoring memory usage Change the host_name to match the name of the host you defined above define service{ use generic-service host_name winserver service_description Memory Usage check_command check_nt!MEMUSE!-w 80 -c 90 } #监控系统C盘的磁盘占用。 Create a service for monitoring C: disk usage Change the host_name to match the name of the host you defined above define service{ use generic-service host_name winserver service_description C: Drive Space check_command check_nt!USEDDISKSPACE!-l c -w 80 -c 90 }
进入目录 /usr/local/nagios/libexec/
在nagios监控端验证是否可以监控到windows主机,用命令./check_nt -H 192.168.13.132 -p 12489 -v UPTIME可以检测到Windows服务器已经启动的时长,也表示可以从Windows服务器拿到数据了。
现在就可以登录到nagios的web界面,查看你的监控信息了
相关文章推荐
智能手机建站的优点是什么?网站页面布局有哪些关键点? 2022-01-10
2022年中国云计算面临的问题及发展前景预测分析2021-12-28
绿色智能基础设施连接可持续未来-IDCC2021万国数据第一代Smart DC发布会议程揭晓2021-12-27
阿里云:早期未意识到Apache log4j2漏洞情况的严重性 将强化漏洞管理2021-12-27
云计算开发:Python3-replace()方法详解2021-12-27