使用paramiko时,Nagios中的插件不起作用?

时间:2013-05-02 13:16:03

标签: python paramiko nagios

我们遇到了Nagios的一些奇怪问题。我们用Python编写了一个脚本,它使用了paramiko,httplib和re。当我们注释掉使用paramiko编写的代码时,脚本在Nagios中返回OK。当我们取消注释脚本时,状态才会返回(null)。

这是我们的代码

ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
#ssh.connect(self.get('hostname'),int(self.get('port')),self.get('username'),allow_agent=True)
ssh.connect('192.168.56.102' , 22 , 'oracle' ,allow_agent=True)
link = '127.0.0.1:4848'
stdin,stdout,stderr = ssh.exec_command('wget --no-proxy ' + link + ' 2>&1 | grep -i "failed\|error"')
result = stdout.readlines()
result = " ".join(result)

if result == "":
    return MonitoringResult(MonitoringResult.OK,'Webservice up')
else:
    return MonitoringResult(MonitoringResult.CRITICAL,'Webservice down %s' % result)

所以当我们评论上面的部分时

if result =="":

并在if上面添加result =“”,它将在Nagios中返回'Webservice up'。当我们启用上面的代码时,它将只返回(null)。与paramiko有什么冲突吗?

在终端中运行代码时,它只返回正确的状态,但在Nagios中实现时不会显示

1 个答案:

答案 0 :(得分:0)

我发现尽管nagios作为有效用户"nagios"运行,但它正在使用用户"root"的环境设置,而无法读取根私钥来建立连接。

key_filename='/nagiosuserhomedir/.ssh/id_dsa'的选项添加ssh.connect()为我解决了同样的问题(在代码中明确传递nagios用户的私钥)。