91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

運維監控之Nagios實戰(二)&Nagios客戶端

發布時間:2020-06-09 14:11:07 來源:網絡 閱讀:473 作者:isweet 欄目:移動開發

   前面呢,服務器搭建起來了,可是光搭個監控報警服務器有什么用呢,難道只為了監控本機,可是如果本機宕機了,那還能收到報警信息嗎,呵呵!

   現在我們來弄點被監控機吧...額,我現在就先弄下Linux和Windows主機

被監控機Linux

   linux客戶端的所用到的工具

運維監控之Nagios實戰(二)&Nagios客戶端

  1. #!/bin/bash 
  2. #filename: nagios-clt.sh 
  3. #Environment: Centos 5.6 32-bit 
  4. #Author: maoxian
  5. #blog: maoxian.blog.51cto.com
  6.  
  7. #定義變量
  8. tooldir=/usr/local/src 
  9.  
  10. #添加nagios用戶 
  11. useradd nagios 
  12. #安裝nagios-plugins-1.4.15,nrpe, 
  13. cd $tooldir 
  14. tar zxvf nagios-plugins-1.4.15.tar.gz 
  15. cd nagios-plugins-1.4.15 
  16. ./configure --with-nagios-user=nagios --with-nagios-group=nagios 
  17. make && make install 
  18.  
  19. cd $tooldir 
  20. tar zxvf nrpe-2.12.tar.gz  
  21. cd nrpe-2.12 
  22. ./configure 
  23. make all 
  24. make install-plugin 
  25. make install-daemon 
  26. make install-daemon-config 
  27.  
  28. #配置nrpe信息 
  29. #vim /usr/local/nagios/etc/nrpe.cfg 
  30. #allowed_hosts=127.0.0.1  //允許監控的IP 
  31. # 
  32. /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d 

 到服務器上修改配置文件nagios.cfg,注釋localhost.cfg那行 添加一樣mylinux.cfg

運維監控之Nagios實戰(二)&Nagios客戶端

創建/usr/local/nagios/etc/objects/mylinux.cfg 

  1. #定義主機部分 
  2. define host{ 
  3.         use                     linux-server 
  4.         host_name               nagios-server 
  5.         alias                   naigos-server 
  6.         address                 192.168.81.128 
  7.         icon_p_w_picpath              web.gif 
  8.         statusmap_p_w_picpath         web.gd2 
  9.     2d_coords       100,300 
  10.     3d_coords       100,300,100 
  11.         } 
  12. define host{ 
  13.         use                     linux-server 
  14.         host_name               nagios-client 
  15.         alias                   nagios-client 
  16.         address                 192.168.81.129 
  17.         icon_p_w_picpath              server.gif 
  18.         statusmap_p_w_picpath         server.gd2 
  19.     2d_coords       200,300 
  20.     3d_coords       200,300,100 
  21.         } 
  22.  
  23. #定義主機組部分 
  24. define hostgroup{ 
  25.         hostgroup_name  linux-servers ; The name of the hostgroup 
  26.         alias           Linux Servers ; Long name of the group 
  27.         members         *     ; Comma separated list of hosts that belong to this group 
  28.         } 
  29. define hostgroup{ 
  30.     hostgroup_name linux-server 
  31.     alias   nagios-test 
  32.     members nagios-server,nagios-client 
  33.     } 
  34. #定義服務組部分 
  35. define servicegroup{ 
  36.     servicegroup_name 系統負荷檢查 
  37.     alias 負荷檢查 
  38.     members nagios-client,進程總數,nagios-client,登錄用戶數,nagios-client,根分區,nagios-client,交換空間利用率,nagios-client,PING 
  39.     } 
  40. #定義服務部分 
  41. define service{ 
  42.         use                             local-service         ; Name of service template to use 
  43.         host_name                       *  
  44.         service_description             PING 
  45.     check_command           check_ping!100.0,20%!500.0,60% 
  46.         } 
  47. define service{ 
  48.         use                             local-service         ; Name of service template to use 
  49.         host_name                       nagios-client 
  50.         service_description             根分區  
  51.     check_command           check_local_disk!20%!10%!/ 
  52.         } 
  53. define service{ 
  54.         use                             local-service         ; Name of service template to use 
  55.         host_name                       nagios-client 
  56.         service_description             登錄用戶數 
  57.     check_command           check_local_users!20!50 
  58.         } 
  59. define service{ 
  60.         use                             local-service         ; Name of service template to use 
  61.         host_name                       nagios-client 
  62.         service_description             進程總數 
  63.     check_command           check_local_procs!250!400!RSZDT 
  64.         } 
  65. define service{ 
  66.         use                             local-service         ; Name of service template to use 
  67.         host_name                       nagios-client 
  68.         service_description             系統負荷 
  69.     check_command           check_local_load!5.0,4.0,3.0!10.0,6.0,4.0 
  70.         } 
  71. define service{ 
  72.         use                             local-service         ; Name of service template to use 
  73.         host_name                       nagios-client 
  74.         service_description             交換空間利用率 
  75.     check_command           check_local_swap!20!10 
  76.         } 
  77. define service{ 
  78.         use                             local-service         ; Name of service template to use 
  79.         host_name                       nagios-client 
  80.         service_description             SSH 
  81.     check_command           check_tcp!22!1.0!10.0 
  82.     notifications_enabled       0 
  83.         } 
  84. define service{ 
  85.         use                             local-service         ; Name of service template to use 
  86.         host_name                       nagios-client 
  87.         service_description             HTTP 
  88.     check_command           check_http 
  89.     notifications_enabled       0 
  90.         }

由于我這臺機器并沒有http 所以會出現異常,可以將以上文件的最后一段去掉.運維監控之Nagios實戰(二)&Nagios客戶端

     Windows客戶端所用到的客戶端  NSClient++

這個很簡單,安裝完成后編輯安裝目錄下的NSC.ini這個文件,按需求配置.之后再運行nsclient++.exe

將nagios-ser上的nagios.cfg的windows.cfg那行注釋去掉,再編輯windows.cfg 改下IP就行了. 然后重啟nagios服務!運維監控之Nagios實戰(二)&Nagios客戶端

配置文件中的配置可以到網上找找相關的資料,這里就不啰嗦了,呵呵!

向AI問一下細節

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

AI

平顶山市| 巴楚县| 台东县| 平度市| 九江县| 诏安县| 颍上县| 吉林省| 囊谦县| 周宁县| 磐石市| 越西县| 阳春市| 武义县| 刚察县| 陆丰市| 行唐县| 禹州市| 兰坪| 新邵县| 清水河县| 儋州市| 西和县| 土默特右旗| 舟山市| 夹江县| 云浮市| 蓬溪县| 桂阳县| 璧山县| 深圳市| 微山县| 邢台县| 陈巴尔虎旗| 涿州市| 石泉县| 安岳县| 珠海市| 承德县| 临高县| 卢氏县|