这篇文章给大家分享的是有关centos5.5如何安装nagios监控的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
十年的惠安网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都全网营销推广的优势是能够根据用户设备显示端的尺寸不同,自动调整惠安建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。创新互联从事“惠安网站设计”,“惠安网站推广”以来,每个客户项目都认真落实执行。
一、插件安装
#useradd nagios -s /sbin/nologin
#tar zxvf 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
#tar zxvf nrpe-2.13.tar.gz
#cd nrpe-2.13
#./configure --enable-ssl --enable-command-args
#make all
#make install-plugin
#make install-daemon
#make install-daemon-config
二、修改配置文件nrpe.cfg
1、安装完后会在/usr/local/nagios/etc/下生成一个nrpe.cfg文件,编辑该文件最后部分,以下command中是以修改过的
#vi /usr/local/nagios/etc/nrpe.cfg
command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10
command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20
command[check_disk]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p /dev/hda1
command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z
command[check_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200
command[check_swap]=/usr/local/nagios/libexec/check_swap -w 20% -c 10%
2、在/usr/local/nagios/etc/nrpe.cfg中修改以下信息,约81行
allowed_hosts=10.96.100.152 --此处填写nagios服务端
#/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
测试和nagios服务端的连通性
#/usr/local/nagios/libexec/check_nrpe -H 10.96.100.152
感谢各位的阅读!关于“centos5.5如何安装nagios监控”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!