Nagios在RedHat Linux的部署(2)


 tar zxvf nagios-plugins-1.4.13.tar.gz  解压文件
 cd nagios-plugins-1.4.13  进入文件并且进行编译
useradd nagios
 ./configure --with-nagios-user=nagios --with-nagios-group=nagios
 make
make install
 chown nagios.nagios /usr/local/nagios    设定文件的权限
 chown -R nagos.nagios /usr/local/nagios/libexec
 rpm -q xinetd   这个插件需要xinetd支持,所以要现看一下有没有安装xinetd,没有安装需要进行安装。
xinetd-2.3.14-10.el
 tar zxvf nrpe-2.12.tar.gz   解压这个插件,并且进行编译
 ./configure
 make all
 make install-plugin
 make install-daemon
 make install-daemon-config
 make install-xinetd
 vim /etc/xinetd.d/nrpe   将这个文件夹里的本地回环那里添加上服务器的IP地址
        only_from       = 127.0.0.1 192.168.126.90
 vim /etc/services    在这里添加上端口
nrpe            5666/tcp                        # NRPE
service xinetd restart  重启一下xinetd
停止 xinetd:                                              [确定]
启动 xinetd:                                              [确定]
 netstat -ntlp | grep 5666  查看一下端口是否已经启动了
tcp        0      0 0.0.0.0:5666                0.0.0.0:*                   LISTEN      24966/xinetd      
 /usr/local/nagios/libexec/check_nrpe -H  localhost    用这个命令查看一下是否能不能检测本机的信息
NRPE v2.12   出现这个意味着可以检测本机信息

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

转载注明出处:https://www.heiqu.com/wywjdj.html