教你实现Nagios监控Linux主机及飞信报警

上篇文章(见  )介绍了在linux主机上架设nagios监控服务,并对windows主机进行服务状态变化的监控,这次我们继续上次内容。

首先实现nagios服务对其他linux主机的监控,其次实现当被监控的mysql服务掉线时提供飞信报警机制

一、下面就进入对其它linux主机实现nagios监控的配置

在被监控端的linux主机上:

1、先添加nagios用户来执行此服务
   useradd nagios

2、为了安装nrpe,先安装nagios-plugins-1.4.15.tar.gz 插件
   tar zxf nagios-plugins-1.4.15.tar.gz
   cd nagios-plugins-1.4.15
   ./configure --with-nagios-user=nagios --with-nagios-group=nagios
   make
   make install

3、编译安装nrpe-2.12.tar.gz
   tar -zxvf nrpe-2.12.tar.gz
   cd nrpe-2.12
   (注:在执行下步之前必须保证这个主机上已经安装了openssl、openssl-devel 否则在编译的时候将提示有不能找到ssl头文件的错误,导致编译无法进行)
    ./configure 
    make all
    make install-plugin
    make install-daemon
    make install-daemon-config

4、对nrpe的配置文件/usr/local/nagios/etc/nrpe.cfg进行配置
    vim /usr/local/nagios/etc/nrpe.cfg
    server_address=127.0.0.1  允许监控的IP

5、检测配置文件的语法并启动服务
   /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
   如果没有任何提示则表示语法正确并已经启动了该服务

到此我们在被监控的linux主机上的配置已经完成

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/wyyzjx.html