溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

nrpe 執(zhí)行命令報(bào)錯(cuò)NRPE: Unable to read output

發(fā)布時(shí)間:2020-08-01 06:45:12 來(lái)源:網(wǎng)絡(luò) 閱讀:826 作者:xiao987334176 欄目:移動(dòng)開(kāi)發(fā)

在客戶端編寫的一個(gè)腳本check_ssh_auto.sh


#!/bin/bash


a=`/bin/cat /etc/ssh/sshd_config | grep PasswordAuthentication | grep -v "^#" | awk '{print $2}'`

if [ "$a" = "yes" ]; then

    echo "SSH authentication: WARNING Please amend the warning SSH authentication for key authentication;"

    $(exit 1)

  else

    echo "SSH authentication: OK;"

    $(exit 0)

  fi


客戶端執(zhí)行正常


nagios服務(wù)器測(cè)試執(zhí)行

/usr/local/nagios/libexec/check_nrpe -H 192.168.10.1 -c ssh_auth

提示NRPE: Unable to read output


解決方法

在客戶端修改文件

vi /etc/sudoers


注視這行

#Defaults    requiretty

在root    ALL=(ALL)       ALL下面添加一行

nagios ALL=(ALL) NOPASSWD:/usr/local/nagios/libexec/*


修改nrpe配置文件/usr/local/nagios/etc/nrpe.cfg


command[ssh_auth]=/usr/bin/sudo /usr/local/nagios/libexec/check_ssh_auth.sh


重啟nrpe


服務(wù)器端再次測(cè)試

SSH authentication: OK;

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI