Nagios 分佈式

Nagios 分佈式
一,分角色
監控中心服務器,分佈式服務器,被監控服務器
監控中心服務器:通過NSCA獲取分佈式監控服務器的相關狀態,呈現相關服務器狀態和發出報警等;
分佈式服務器:通過對被監控服務器狀態採集並且把被監控服務器的狀態通過NSCA_send發送給監控中心服務器。
被監控服務器:被監控服務器就是生產環境服務器。
23160249_1.jpg

二,詳細部署
1,被監控服務器
tar -zxvf nagios-plugins-1.4.15.tar.gz
cd nagios-plugins-1.4.15
./configure
make
make install
chown nagios.nagios /usr/local/nagios
chown nagios.nagios /usr/local/nagios
cd ..
ls
tar -zxvf nrpe-2.12.tar.gz
pwd
ls
cd nrpe-2.12
./configure
make all
make install-plugin
make install-daemon
make install-daemon-config
vi /usr/local/nagios/etc/nrpe.cfg
將allowed_hosts=127.0.0.1
修改成你的nagios分佈式服務器的ip
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d #啓動nrpe
netstat -anl|grep 5666#測試監聽端口
2,安裝分佈式服務器
useradd nagios
passwd nagios
groupadd nagcmd
usermod -G nagcmd nagios
usermod -G nagcmd apache #創建Nagios用戶 創建組 把用戶加入組 並加入apche
tar -zxvf nagios-3.2.3.tar.gz
cd nagios-3.2.3
./configure --with-command-group=nagcmd
make all
make install
make install-init
make install-config
make install-commandmode

tar -zxvf nagios-plugins-1.4.15.tar.gz
cd nagios-plugins-1.4.15
./configure --with-nagios-user=nagios --with-nagios-group=nagcmd
make
make install
chkconfig --add nagios
chkconfig nagios on

tar -zxvf nrpe-2.12.tar.gz
cd nrpe-2.12
./configure
make all
make install-plugin
/usr/local/nagios/libexec/check_nrpe -H 192.168.20.100 #測試被監控服務器是否連通,正常情況下會返回被監控端的NRPE版本
vi /usr/local/nagios/etc/objects/commands.cfg
#check nrpe
define command{
command_name check_nrpe
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
} #添加nrpe外部檢測命令

tar -zxvf nsca-2.7.2.tar.gz
cd nsca-2.7.2
./configure
make all
cp sample-config/send_nsca.cfg /usr/local/nagios/etc/
cd /usr/local/nagios/etc/
chown nagios.nagios send_nsca.cfg
cp src/send_nsca /usr/local/nagios/bin/
cd /usr/local/nagios/bin/
chown nagios.nagios send_nsca
vi /usr/local/nagios/libexec/submit_check_result #創建腳本

#!/bin/sh
# Arguments:
# $1 = host_name (Short name of host that the service is
# associated with)
# $2 = svc_description (Description of the service)
# $3 = state_string (A string representing the status of
# the given service - "OK", "WARNING", "CRITICAL"
# or "UNKNOWN")
# $4 = plugin_output (A text string that should be used
# as the plugin output for the service checks)
#

# Convert the state string to the corresponding return code
return_code=-1

case "$3" in
OK)
return_code=0
;;
WARNING)
return_code=1
;;
CRITICAL)
return_code=2
;;
UNKNOWN)
return_code=-1
;;
esac
# pipe the service check info into the send_nsca program, which
# in turn transmits the data to the nsca daemon on the central
# monitoring server

/bin/printf "%s\t%s\t%s\t%s\n" "$1" "$2" "$return_code" "$4" | /usr/local/nagios/bin/send_nsca 192.168.20.195 -c /usr/local/nagios/etc/send_nsca.cfg #此處的IP地址爲監控中心服務器。
chmod +x /usr/local/nagios/libexec/submit_check_result
chown nagios.nagios /usr/local/nagios/libexec/submit_check_result


vi /usr/local/nagios/etc/objects/commands.cfg #增加如下檢測命令

define command{
command_name submit_check_result
command_line /usr/local/nagios/libexec/submit_check_result $HOSTNAME$ '$SERVICEDESC$' $SERVICESTATE$ '$SERVICEOUTPUT$'
}

vi /usr/local/nagios/etc/nagios.cfg
enable_notifications=0 #禁用告警
obsess_over_services=1#開啓被動監控
ocsp_command=submit_check_result#定義每次執行完檢查後執行的命令
obsess_over_hosts=1#開啓主機被動監控
ochp_command=submit_check_result#指定每次執行完主機檢查後執行的命令

vi /usr/local/nagios/etc/send_nsca.cfg
password=urgamer#設置密碼,此處設置的密碼要和監控中心服務器一致

配置被監控的服務器,此處配置在分佈式監控服務器上配置
cd /usr/local/nagios/etc/objects/
vi hosts.cfg
define host{
use linux-server ; Name of host template to use
; This host definition will inherit all variables that are defined
; in (or inherited by) the linux-server host template definition.
host_name urg-test01
alias linux-test01
address 192.168.20..100
}
vi services.cfg


define service{
use local-service ; Name of service template to use
host_name urg-test01
service_description PING
check_command check_ping!100.0,20%!500.0,60%
}
define service{
use local-service ; Name of service template to use
host_name urg-test01
service_description Root Partition
check_command check_nrpe!check_local_disk!20%!10%!/
}
define service{
use local-service ; Name of service template to use
host_name urg-test01
service_description Current Users
check_command check_nrpe!check_local_users!20!50
}
define service{
use local-service ; Name of service template to use
host_name urg-test01
service_description Total Processes
check_command check_nrpe!check_local_procs!250!400!RSZDT
}



vi nagios.cfg #添加以下兩行配置
cfg_file=/usr/local/nagios/etc/objects/hosts.cfg
cfg_file=/usr/local/nagios/etc/objects/services.cfg
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg #檢查配置文件
service nagios start #啓動nagios
3,安裝監控中心服務器
首先確認監控中心服務器已經安裝了apache且禁用了SElinux
useradd nagios
passwd nagios
groupadd nagcmd
usermod -G nagcmd nagios
usermod -G nagcmd apache #創建Nagios用戶 創建組 把用戶加入組 並加入apche
tar -zxvf nagios-3.2.3.tar.gz
cd nagios-3.2.3
./configure --with-command-group=nagcmd
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

tar xzf nagios-plugins-1.4.11.tar.gz
cd nagios-plugins-1.4.11
./configure --with-nagios-user=nagios --with-nagios-group=nagcmd
make
make install
chkconfig --add nagios
chkconfig nagios on

tar -zxvf nsca-2.7.2.tar.gz
cd nsca-2.7.2
./configure
make all
cp /usr/local/src/nsca-2.7.2/src/nsca /usr/local/nagios/bin/
chown nagios:nagios /usr/local/nagios/bin/nsca
cp /usr/local/src/nsca-2.7.2/sample-config/nsca.cfg /usr/local/nagios/etc
chown nagios:nagios /usr/local/nagios/etc/nsca.cf

vi /usr/local/nagios/etc/nsca.cfg
password=urgamer #此處和分佈式監控服務器密碼一致
vi /usr/local/nagios/etc/nagios.cfg
check_external_commands=1# 配置nagios檢查擴展命令
accept_passive_service_checks=1# 配置接受被動服務檢測的結果
accept_passive_host_checks=1#配置接受被動主機檢測的結果

cd /usr/local/nagios/etc/
mkdir monitor
cd monitor
vi monitor.cfg
define host{
use linux-server
host_name urg-test01
address 192,168,20.100
passive_checks_enabled 1
active_checks_enabled 0
}

define service{
use local-service
host_name urg-test01
service_description Root Partiton
check_command check_local_disk!30%!10!/
check_freshness 1
freshness_threshold 450
passive_checks_enabled 1
active_checks_enables 0
}

/usr/local/nagios/bin/nsca -d -c /usr/local/nagios/nsca.cfg

service nagios restart
此時重新打開瀏覽器就換顯示,新加的服務器。
23160249_2.jpg



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章