大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
安装nrpe依赖包
sudo apt-get install gcc glibc glibc-common openssl libssl-dev xinetd
如果nrpe-2.15# ./configure 还是一样的错误!
那么,执行:
dpkg -L libssl-dev
/.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
…………………………
/nrpe-2.15# ./configure --with-ssl-lib=/usr/lib/x86_64-linux-gnu
就可以解决问题!!
2.安装nagios-plugin
useradd nagios
wget http://sourceforge.net/projects/nagiosplug/files/nagiosplug/1.4.15/nagios-plugins-1.4.15.tar.gz/download
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
chown -R nagios.nagios /usr/local/nagios
3.安装nrpe
wget http://nchc.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.12/nrpe-2.12.tar.gz
tar zxf nrpe-2.12.tar.gz && cd nrpe-2.12
./configure
make all
make install-plugin
make install-daemon
make install-daemon-config
make install-xinetd
成都创新互联是一家专业提供临高企业网站建设,专注与成都做网站、网站建设、H5场景定制、小程序制作等业务。10年已为临高众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。
more /etc/xinetd.d/nrpe
only_from ++++ ip
4.启动nrpe并设置开机自启动
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
echo "/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d" >> /etc/rc.d/rc.local
5.测试
在nagios服务端检测nrpe和服务端的连接状态
/usr/local/nagios/libexec/check_nrpe -H 192.168.10.101
运行正常的话将返回nrpe的版本号