您好,登錄后才能下訂單哦!
centos6.3快速部署nagios監控路由和服務器
1、環境準備:
最小化安裝的centos6.3系統
2、服務器端部署
環境準備:
- yum update
- chkconfig iptables off
- chkconfig ip6tables off
- vi /etc/sysconfig/selinux
- SELINUX=disabled
- rpm -i http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-7.noarch.rpm
- rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-*
軟件安裝:
- yum install nagios nagios-plugins nagios-plugins-all nagios-plugins-nrpe php php-pear mod_ssl net-snmp net-snmp-utils sendmail
- htpasswd /etc/nagios/passwd nagiosadmin
- nagios -v /etc/nagios/nagios.cfg
- usermod -a -G nagios apache
- chkconfig nagios on
- chkconfig httpd on
- chkconfig sendmail on
- service sendmail restart
- service httpd restart
配置nagios,添加nrpe支持
- vim /etc/nagios/nagios.cfg
- cfg_dir= /etc/nagios/servers
- vim /etc/nagios/objects/commands.cfg
- define command{
- command_name check_nrpe
- command_line /usr/lib64/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
- }
- mkdir /etc/nagios/servers
- chown root:nagios /etc/nagios/servers
- service nagios restart
客戶端配置:
- yum update
- chkconfig iptables off
- chkconfig ip6tables off
- vi /etc/sysconfig/selinux
- SELINUX=disabled
- rpm -i http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-7.noarch.rpm
- rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-*
- yum install nagios-plugins-nrpe nagios-plugins-all nagios-nrpe openssl
配置客戶端nrpe
- vim /etc/nagios/nrpe.cfg
- allowed_hosts=127.0.0.1,192.168.0.7
- chown nrpe:nrpe /etc/nagios/nrpe.cfg
- vim /etc/services
- nrpe 5666/tcp # NRPE
- chkconfig nrpe on
啟動并檢查nrpe的狀態
- service nrpe start
- /usr/lib64/nagios/plugins/check_nrpe -H 127.0.0.1 在服務器端檢查nrpe的通信情況 /usr/lib64/nagios/plugins/check_nrpe -H 192.168.1.4
如果能正常顯示nrpe的版本那么至此我們的配置就OK了。
至于具體的監控選項我們可以自己添加舉個我自用的例子。
在/etc/nagios/servers/創建文件test.cfg
內容如下:
- define host{
- use linux-server
- host_name node253
- alias node253
- address 192.168.0.253
- }
- define service{
- use generic-service
- host_name node253
- service_description check-ping
- check_command check_ping!100.0,20%!500.0,60%
- notification_options w,c,r
- notification_interval 8
- normal_check_interval 3
- }
- define service{
- use generic-service
- host_name node253
- service_description check-drbd
- check_command check_nrpe!check_drbd
- notification_options w,c,r
- notification_interval 8
- normal_check_interval 3
- }
在nagios的使用當中有幾個路徑是很重要的:
1、/usr/lib64/nagios/plugins 此為nagios的監控腳本。安裝時自帶了一部分。如果沒有需要的可以從網絡下載腳本放入其中就可以了。也可以自己書寫。
2、/etc/nagios/objects 此為nagios模版文件的目錄。特別是里面的command.cfg,如果我們想監控nagios不自帶的項目時,需要在這里添加上命令。才可以在監控的配置文件里引用命令
3、客戶端的/etc/nagios/nrpe.cfg在監控被監控端的本機信息時check_nrpe!后面引用的命令在這里定義。只有添加進去才可以得到本機信息。
在我的實際使用當中許多的監控選項都要靠額外添加監控腳本來實現。具體的監控腳本就不提供了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。