抱歉,评论被关闭
如何解决nagios安装及运行在的常见错误?
一、安装nrpe的时候,提示:checking for SSL headers… configure: error: Cannot find ssl headers
解决方法如下:
yum -y install openssl-devel
yum -y install openssl-perl
二、启动nagios错误 Starting nagios:This account is currently not available.
解决办法:默认是 shell 是 /bin/bash,不要使用 -s /sbin/nologin,否则会出现上面的错误
但是我为安全起见,我还是加了-s /sbin/nologin,不要管启动错误就行了,nagios照常运行
三、It appears as though you do not have permission to view information for any of the hosts you requested
解决方法一:打开cgi.cfg 里参数use_authentication=1
改为0即可(为了保障系统的安全性,nagios设置了这个参数,默认为1,)
解决方法二:打开cgi.cfg 相关参数auth*开头的都 后面加上nagios登录帐号
四、所监控服务报错(Return code of 127 is out of bounds – plugin may be missing)
这行代码 command_line $USER1/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
改成command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ 就对 了
五、Connection refused or timed out
检查nrpe 端口
检查nrpe.cfg中allowed_hosts是否包含监控机ip地址
检查/etc/hosts.allow文件中监控机ip地址nrpe:192.168.1.91
检查iptables
开放5666端口 上面的都做了,还是有问题呢
解决办法:接下来查出是防火墙的问题。。。
在防火墙里加入
:RH-Firewall-1-INPUT – [0:0]
-A INPUT -j RH-Firewall-1-INPUT
并且把
-A INPUT -p tcp -s 125.64.41.211 –dport 5666 -j ACCEPT
修改为
-A RH-Firewall-1-INPUT -p tcp -s 125.64.41.211 –dport 5666 -j ACCEPT
本文出自 “凹凸曼” 博客,请务必保留此出处 http://www.apoyl.com/?p=1319