溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Nagios 使用技巧

發(fā)布時(shí)間:2020-07-12 03:10:57 來(lái)源:網(wǎng)絡(luò) 閱讀:623 作者:secboy 欄目:移動(dòng)開(kāi)發(fā)

Nagios 使用技巧


需求1.Nagios針對(duì)一臺(tái)主機(jī)上的多個(gè)域名進(jìn)行監(jiān)控

Solution:

使用 check_http插件對(duì)站點(diǎn)的狀態(tài)碼進(jìn)行檢測(cè)

vim command.cfg

define command{

command_name check_http

command_line $USER1$/check_http -I $ARG1$ -u $ARG2$ -e $ARG3$

}

vim services.cfg


define service{

host_name Web103

service_description check-Web103

max_check_attempts 5

normal_check_interval 3

retry_check_interval 2

check_period 24x7

notification_interval 10

notification_period 24x7

notification_options w,u,c,r

contact_groups admins

check_command check_http!10.100.100.103!http://www.pongo.cn/check/check.html!"200"

}

參數(shù)解釋:

-I Ipaddress

-u uri

-e 狀態(tài)碼


需求2:Nagios設(shè)置報(bào)警間隔和報(bào)警次數(shù)

solution:

注:本次演示主機(jī)的,服務(wù)的也一樣


1.定義從第1次到第5次通知的時(shí)間間隔為10分鐘

define host {

host_name Web103

alias Web103

address 10.100.100.103

check_command check-host-alive

notification_options d,u,r

check_interval 1

max_check_attempts 2

first_notification 1

last_notification 5

contact_groups admins

notification_interval 10

notification_period 24x7

}


2.從第5次到第10次通知的間隔為30分鐘

define host {

host_name Web103

alias Web103

address 10.100.100.103

check_command check-host-alive

notification_options d,u,r

check_interval 1

max_check_attempts 2

first_notification 5

last_notification 10

contact_groups admins

notification_interval 30

notification_period 24x7

}


3.從第10次以后不能通告,直到恢復(fù)

define host {

host_name Web103

alias Web103

address 10.100.100.103

check_command check-host-alive

notification_options d,u,r

check_interval 1

max_check_attempts 2

first_notification 10

last_notification 0

contact_groups admins

notification_interval 0

notification_period 24x7

}


注:每次通知都可以設(shè)置不同的身份人。


需求3:定義常用服務(wù)和主機(jī)模板

solution:


將每個(gè)服務(wù)常用的一些策略和選項(xiàng)放在一起,在每個(gè)服務(wù)中使用use 應(yīng)用

define service {

name Web

contact_groups admins

check_period 24x7

normal_check_interval 3

retry_check_interval 2

notification_interval 10

max_check_attempts 5

notification_period 24x7

notification_options w,u,c,r

}


define service {

use Web

host_name Web103

service_description WebSite_hire.pongo.cn

check_command check_web!10.100.100.103!http://hire.pongo.cn/check/check.html!"200"

}


注:由上面可以看出,定義服務(wù)時(shí)省去了很多選項(xiàng),使代碼看起來(lái)越簡(jiǎn)練,主機(jī)的模板和服務(wù)的定義類似。


需求4.使用nagios的聲音功能,及時(shí)了解主機(jī)或服務(wù)的狀態(tài)

solution:

# Note: All audio files must be placed in the /media subdirectory

# under the HTML path (i.e. /usr/local/nagios/share/media/).


host_unreachable_sound=hostdown.wav

host_down_sound=hostdown.wav

service_critical_sound=critical.wav

service_warning_sound=warning.wav

service_unknown_sound=warning.wav

normal_sound=noproblem.wav


將聲音文件放到/usr/local/nagios/share/media/即可(根據(jù)你的安裝路徑來(lái)定),當(dāng)服務(wù)或主機(jī)觸發(fā)不同級(jí)別的時(shí)候,就會(huì)發(fā)出不同的聲音。



需求5:服務(wù)器數(shù)量眾多,我想為同類型的服務(wù)器,主機(jī)或服務(wù)配置文件放到一個(gè)文件中。

solution:

為不同應(yīng)用類型創(chuàng)建目錄和文件

#cd /usr/local/nagios/etc/objects

#mkdir mysql web *** switch

#cd web

#touch services.cfg host.cfg

#vim /usr/local/nagios/etc/nagios.cfg

cfg_dir=/usr/local/nagios/etc/objects/web

cfg_file=/usr/local/nagios/etc/objects/web/host.cfg

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

注:其它應(yīng)用類型和上面添加方法相同。


向AI問(wèn)一下細(xì)節(jié)

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

AI