2016-10-04 51 views
0

的check_nrpe腳本可以解決自定義顯示器到主機失敗。錯誤號爲2:沒有這樣的文件或目錄

/usr/lib64/nagios/plugins/check_nrpe -H 172.31.3.90 -c pinger 

在Nagios的儀表盤,它拋出一個錯誤

failed. errno is 2: No such file or directory 

網絡和其他依賴做工精細和定義命令和服務似乎罰款以及

define command { 
     command_name pinger 
     command_line check_nrpe!pinger 
} 

define service { 
     use        local-service   ; Name of service template to use 
     host_name      ci3 
     service_description    pinger 
     check_command     pinger 
} 

Dashboard

回答

0

的check_nrpe命令必須添加Nagios監控服務器的文件

/usr/local/nagios/etc/objects/commands.cfg 

該條目引用程序check_nrpe

define command { 
     command_name        check_nrpe 
     command_line        /usr/lib64/nagios/plugins/check_nrpe -H $HOSTNAME$ -c pinger 
} 

現在的服務是收集數據,並可以在Dashboard

驗證在
相關問題