一,監(jiān)控思想
10年積累的成都網(wǎng)站建設(shè)、網(wǎng)站制作經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有青秀免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
可以使用兩種模式,check_nrpe方式和SNMP方式,這里我們采用SNMP代理方式。
兩種方式都依賴HP的ProLiant Support Pack(PSP)軟件包,有兩種方式安裝PSP包,一種tar包,一種RPM包,經(jīng)過實踐tar包很難安裝,所以最終采用rpm包方式。
二,實施步驟
1,到 http://downloads.linux.hp.com/SDR/getting_started.html 下載 add_repo.sh 腳本,并上傳到HP服務(wù)器。
2,用root用戶登錄,在服務(wù)器上執(zhí)行以下命令:
chmod 700 add_repo.sh
./add_repo.sh spp -d rhel -r 6Server -y hp.repo
(運行該腳本后會在/etc/yum.repos.d/生成一個hp.repo文件,
-d linux的發(fā)行版本,如 rhel、centos,
-r linux版本,如6server,
-y 指定yum客戶端的配置文件的名稱,如hp.repo)
yum -y install hp-health hpacucli hp-smh-templates hpacucli
3,我們先命令行檢測下:
hpacucli ctrl all show config
hpacucli ctrl slot=0 show config detail(陣列詳細信息)
上面命令執(zhí)行正確,會出現(xiàn)以下信息:
4,修改 snmpd.conf 配置文件,在文件最后加上以下內(nèi)容,并修改公共字符串。
vi /etc/snmp/snmpd.conf
# Following entries were added by HP Insight Management Agents at
dlmod cmaX /usr/lib64/libcmaX64.so
rwcommunity hp 127.0.0.1
rocommunity sou_shi 0.0.0.0
rwcommunity sou_shi 127.0.0.1
rocommunity sou_shi default -V systemonly
trapcommunity hp
trapsink localhost sou_shi
5,重新啟動SNMP服務(wù)
/etc/init.d/snmpd restart
6,啟動HP檢測服務(wù)
/etc/init.d/hp-snmp-agents start
/etc/init.d/hp-health start
7,安裝nagios服務(wù)端監(jiān)控
在nagios服務(wù)器端安裝 check_hpasm-4.6.3.tar.gz,軟件下載地址如下: http://labs.consol.de/lang/en/nagios/check_hpasm/
tar -zxvf check_hpasm-4.6.3.tar.gz
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-degrees=celsius --enable-hpacucli --enable-hwinfo --enable-extendedinfo --enable-perfdata
make && make install
先用命令行進行測試:
/usr/local/nagios/libexec/check_hpasm --hostname 192.168.1.224 -C sou_shi
如果命令行正確,會出現(xiàn)下面的信息:
8,修改nagios配置文件
commands.cfg 內(nèi)容如下:
############################## hp_monitor ########################
define command {
command_name check_hp_hardware
command_line /usr/local/nagios/libexec/check_hpasm -H $HOSTADDRESS$ -C sou_shi
}
被監(jiān)控主機 配置內(nèi)容如下:
########################## hp_monitor ##################################
define service {
use hp-service
host_name 192.168.1.223
service_description check_hp_hardware
check_command check_hp_hardware
}
8,最終監(jiān)控效果圖
異常狀態(tài)圖:
參考文獻:
http://kyle.xlau.org/posts/nagios-plugin-for-HP.html
http://labs.consol.de/lang/en/nagios/check_hpasm/
https://alteeve.ca/w/HP-Specific_Notes
http://www.it-slav.net/blogs/2010/03/02/monitor-hp-proliant-with-nagios-or-op5-monitor/
http://downloads.linux.hp.com/SDR/getting_started.html
http://2528332.blog.51cto.com/2518332/972291
http://www.linuxde.net/2013/07/14885.html