今天升級了下nagios,發(fā)現(xiàn)在Web界面中測試手動發(fā)送報警消息時報以下錯誤
創(chuàng)新互聯(lián)建站是一家以成都網(wǎng)站建設、網(wǎng)頁設計、品牌設計、軟件運維、營銷推廣、小程序App開發(fā)等移動開發(fā)為一體互聯(lián)網(wǎng)公司。已累計為假山制作等眾行業(yè)中小客戶提供優(yōu)質(zhì)的互聯(lián)網(wǎng)建站和軟件開發(fā)服務。
- Error: Could not open command file '/usr/local/nagios/var/rw/nagios.cmd' for update!
- The permissions on the external command file and/or directory may be incorrect. Read the FAQs on how to setup proper permissions.
- An error occurred while attempting to commit your command for processing.
- Return from whence you came
如果你手動修改過nagios中的rw目錄的權(quán)限,可以使用下面命令恢復默認權(quán)限
- cd /usr/local/src/nagios
- make install-commandmode
- # 它執(zhí)行以下命令
- /usr/bin/install -c -m 775 -o nagios -g nagcmd -d /usr/local/nagios/var/rw
- chmod g+s /usr/local/nagios/var/rw
官網(wǎng)提供的解決方法地址:http://nagios.manubulon.com/traduction/docs25en/commandfile.html
如果按照手冊的操作就是make install-commandmode是不行的,還是需要將rw目錄的其他用戶權(quán)限改為7
解決方法:
- chmod o+rwx /usr/local/nagios/var/rw
nagios需要停止然后開啟才會生效