您好,登錄后才能下訂單哦!
一,監控思想
可以使用兩種模式,check_nrpe方式和SNMP方式,這里我們采用SNMP代理方式。
兩種方式都依賴HP的ProLiant Support Pack(PSP)軟件包,有兩種方式安裝PSP包,一種tar包,一種RPM包,經過實踐tar包很難安裝,所以最終采用rpm包方式。
二,實施步驟
1,到 http://downloads.linux.hp.com/SDR/getting_started.html 下載 add_repo.sh 腳本,并上傳到HP服務器。
2,用root用戶登錄,在服務器上執行以下命令:
chmod 700 add_repo.sh
./add_repo.sh spp -d rhel -r 6Server -y hp.repo
(運行該腳本后會在/etc/yum.repos.d/生成一個hp.repo文件,
-d linux的發行版本,如 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(陣列詳細信息)
上面命令執行正確,會出現以下信息:
4,修改 snmpd.conf 配置文件,在文件最后加上以下內容,并修改公共字符串。
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服務
/etc/init.d/snmpd restart
6,啟動HP檢測服務
/etc/init.d/hp-snmp-agents start
/etc/init.d/hp-health start
7,安裝nagios服務端監控
在nagios服務器端安裝 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
如果命令行正確,會出現下面的信息:
8,修改nagios配置文件
commands.cfg 內容如下:
############################## hp_monitor ########################
define command {
command_name check_hp_hardware
command_line /usr/local/nagios/libexec/check_hpasm -H $HOSTADDRESS$ -C sou_shi
}
被監控主機 配置內容如下:
########################## hp_monitor ##################################
define service {
use hp-service
host_name 192.168.1.223
service_description check_hp_hardware
check_command check_hp_hardware
}
8,最終監控效果圖
異常狀態圖:
參考文獻:
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
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。