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

溫馨提示×

溫馨提示×

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

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

CentOS源碼安裝nagios與nagios-plugin

發布時間:2020-06-23 23:21:03 來源:網絡 閱讀:789 作者:chenshengang 欄目:移動開發

CentOSx64 源碼安裝nagios與nagios-plugin


官方網址:http://www.nagios.org


一、安裝指導:

http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html


二、nagios的配置

1)修改/usr/local/nagios/etc/nagios.cnf 文件修改如下:


#cfg_file=/usr/local/nagios/etc/objects/windows.cfg

cfg_file=/usr/local/nagios/etc/objects/hosts.cfg

cfg_file=/usr/local/nagios/etc/objects/services.cfg


2)在/usr/local/nagios/etc/objects/目錄下建立主機文件hosts.cfg和服務文件services.cfg兩個文件

#touch hosts.cfg

#touch services.cfg

#chown -R nagios:nagcmd hosts.cfg

#chown -R nagios:nagcmd services.cfg

#chmod -R 755 hosts.cfg

#chmod -R 755 services.cfg


3)在hosts.cfg和services.cfg ,添加如下內容:

#vi hosts.cfg

define hostgroup{

        hostgroup_name  windows-servers ; The name of the hostgroup

        alias           Windows Servers ; Long name of the group

        }


define host {

                host_name                             118.X.35.226

                alias                                      SingTel_Main_Broadcast

                address                                118.X.35.226

                check_command                   check-host-alive

                check_period                          24x7

                notification_period                 24x7

                use                                   windows-server

}


define host {

                host_name                            118.X.35.242

                alias                                      SingTel_Backup_Broadcast

                address                                118.X.35.242

                check_command                  check-host-alive

                check_period                          24x7

                notification_period                24x7

                use                                   windows-server

}

#define host {

#                host_name                          118.X.35.241

#                alias                                    Cisco router

#                address                               118.X.35.241

#                check_command                 check-host-alive

#                check_period                         24x7

#                notification_period                24x7

#}

#define host {

#                host_name                          118.X.35.225

#                alias                                    Juniper Firewall

#                address                               118.X.35.225

#                check_command                   check-host-alive

#                check_period                          24x7

#                notification_period                24x7

#

#}


~



#vi services.cfg

define service {

                service_description                   PING

                check_interval                            5

                retry_interval                             1

                check_command                    check_ping!3000.0,80%!5000.0,100%

                host_name                             118.X.35.226,118.X.35.242

                hostgroup_name                   windows-servers

                check_period                          24x7

                notification_period                24x7

                max_check_attempts                 5

#               notification_interval                 5

                use                                        local-service

                contact_groups                       +admins

}


define service {

                service_description                   C:\ Drive Space

                check_command                       check_nt!USEDDISKSPACE!-l c -w 92 -c 95

                host_name                                118.X.35.226,118.X.35.242

                hostgroup_name                       windows-servers

                check_period                            24x7

                notification_period                  24x7

                max_check_attempts                    1

                check_interval                               1

                use                                   generic-service

                contact_groups                        +admins

}


define service {

                service_description                   D:\ Drive Space

                check_command                      check_nt!USEDDISKSPACE!-l d -w 92 -c 95

                host_name                               118.X.35.226,118.X.35.242

                check_period                           24x7

                notification_period                 24x7

                max_check_attempts                 1

                check_interval                            1

                use                                            generic-service

                hostgroup_name                      windows-servers

                contact_groups                        +admins

}


define service {

                service_description                   Z:\ Drive Space

                check_command                       check_nt!USEDDISKSPACE!-l z -w 96 -c 98

                host_name                                118.X.35.226,118.X.35.242

                check_period                              24x7

                notification_period                    24x7

                max_check_attempts                    1

                check_interval                               1

                use                                              generic-service

                hostgroup_name                        windows-servers

                contact_groups                        +admins

}



define service {

                service_description                   Recv_XD

                check_command                    check_nt!PROCSTATE!-d SHOWALL -l Recv_XD.exe

                host_name                             118.X.35.226

                check_period                          24x7

                notification_period                24x7

                max_check_attempts                 1

                check_interval                            1

                use                                           generic-service

                contact_groups                        +admins

}



define service {

                service_description                GoodSync_client

                check_command                    check_nt!PROCSTATE!-d SHOWALL -l GoodSync.exe

                host_name                             118.X.35.242

                check_period                          24x7

                notification_period                24x7

                max_check_attempts                    1

                check_interval                               1

                use                                        generic-service

                contact_groups                        +admins

}



define service {

                service_description                   TSPlay_Program

                check_command                   check_nt!PROCSTATE!-d SHOWALL -l TSServer.exe

                host_name                             118.X.35.226,118.X.35.242

                check_period                          24x7

                notification_period                24x7

                max_check_attempts              1

                check_interval                         1

                use                                         generic-service

                contact_groups                        +admins

}



define service {

                service_description                   IIS Service

                check_command                    check_nt!SERVICESTATE!-d SHOWALL -l W3SVC

                host_name                             118.X.35.226,118.X.35.242

                check_period                          24x7

                notification_period                24x7

                max_check_attempts              1

                check_interval                         1

                use                                   generic-service

                contact_groups                        +admins

}



define service {

                service_description           MSSQLSERVER

                check_command             check_nt!SERVICESTATE!-d SHOWALL -l MSSQLSERVER

                host_name                        118.X.35.226,118.X.35.242

                check_period                          24x7

                notification_period                24x7

                max_check_attempts             1

                check_interval                        1

                use                                   generic-service

                contact_groups                        +admins

}



define service {

                service_description               Apache Tomcat

                check_command                   check_nt!SERVICESTATE!-d SHOWALL -l Tomcat6

                host_name                             118.X.35.226

                check_period                          24x7

                notification_period                24x7

                max_check_attempts             1

                check_interval                        1

                use                                   generic-service

                contact_groups                        +admins

}



define service {

                service_description                http-8080

                check_command                   check_tcp!8080 -t 5!

                host_name                             118.X.35.226

                check_period                          24x7

                notification_period                24x7

                max_check_attempts             1        最多檢查一次(默認3次)

                check_interval                        1        檢查間隔1分鐘,有問題發郵件

                use                                   generic-service

                contact_groups                        +admins

}


#/etc/init.d/nagios start

日志文件: tail -f /var/log/messages

4)訪問網址:http://ip/nagios

向AI問一下細節

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

AI

宁城县| 珠海市| 商水县| 手游| 昭觉县| 喀什市| 海丰县| 绩溪县| 志丹县| 丽江市| 垦利县| 盐津县| 凤翔县| 顺平县| 潜山县| 开封市| 灵武市| 张家口市| 夏津县| 新蔡县| 洛阳市| 越西县| 岑溪市| 台江县| 商洛市| 安顺市| 沙田区| 蒲城县| 甘德县| 噶尔县| 石门县| 栾川县| 林甸县| 石渠县| 尤溪县| 台南市| 淳安县| 礼泉县| 耿马| 延寿县| 祁门县|