溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nagios實現(xiàn)對個別用戶隱藏部分服務信息

發(fā)布時間:2020-06-20 18:15:32 來源:網(wǎng)絡 閱讀:516 作者:逸馬 欄目:移動開發(fā)

nagios如何實現(xiàn)對個別用戶隱藏部分服務信息。 

1、添加測試用戶

  1. htpasswd /usr/local/nagios/etc/htpasswd.users user 

2、將測試用戶添加到聯(lián)系人。

  1. define contact{  
  2.          contact_name    test  
  3.          use             generic-contact  
  4.          alias           test  
  5.          }  

3、將聯(lián)系人添加到允許查看的個別服務中(define service)。注意不能寫入define host,寫入host里面就能看見該主機的全部服務了。

  1. define service { 
  2.         use                   web 
  3.         host_name             web-test 
  4.         service_description    80_Port_Status 
  5.         normal_check_interval   1 
  6.         notifications_enabled   0 
  7.         check_command           check_tcp!80 
  8. contacts test
  9.         } 

 這樣就能想讓test用戶看什么服務,就只能看什么服務。

向AI問一下細節(jié)

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

AI