码迷,mamicode.com
首页 > 移动开发 > 详细

服务器监控-nagios安装篇

时间:2014-10-27 19:46:48      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:nagios安装

一:安装前准备

nagios server:192.168.1.10

nagios client:192.168.1.11

该博文安装nagios只使用nagios邮件报警功能,如需画图另外安装cacti,或其他插件


二:安装服务

在nagios server上操作:

安装Apache+php

yum install httpd httpd-devel php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml gcc glibc glibc-common gd gd-devel openssl openssl-devel


groupadd nagios

useradd nagios

useradd -G nagios nagios

usermod -G nagios apache


wget http://sourceforge.net/projects/nagios/?source=directory

tar zxvf nagios-3.2.0.tar.gz

cd nagios-3.2.0

./configure --prefix=/usr/local/nagios --with-command-group=nagios

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

service httpd restart


nagios-plugins下载地址:www.nagios.org

tar zxvf nagios-plugins-1.4.14.tar.gz

cd nagios-plugins-1.4.14

./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios

make && make install


wget http://sourceforge.net/projects/nagios-cn/files/latest/download

tar -xjf nagios-cn-3.2.3.tar.bz2

cd nagios-cn-3.2.3

 ./configure 

make all

make install


http://sourceforge.net/projects/nagios/files/nrpe-2.x/

tar zxvf nrpe-2.13.tar.gz 

cd nrpe-2.13

./configure

make all

make install-plugin


vi /usr/local/nagios/etc/objects/commands.cfg 在最后添加

define command {

    command_name check_nrpe

    command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$

}


检查配置文件是否正确

/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg


在被监控主机上操作:

useradd -s /sbin/nologin nagios

tar zxvf nagios-plugins-1.4.14.tar.gz

cd nagios-plugins-1.4.14

./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios

make && make install


tar zxvf nrpe-2.13.tar.gz 

cd nrpe-2.13

./configure

make all

make install-plugin

make install-daemon

make install-daemon-config

make install-xinetd


yum install xinetd

vim /etc/xinetd.d/nrpe

将only_from = 后面加上监控端的地址192.168.1.10

确保/etc/services有nrpe 5666/tcp #NRPE这一行,没有则添加

重启xinetd服务,至此被监控端配置完毕

/usr/local/nagios/libexec/check_nrpe -H 被监控端的地址

如能显示 “NRPE v2.12”,表明NRPE可以和被监控端正常通信


安装完毕,接下来开始配置。


本文出自 “人要有梦想,万一实现了呢” 博客,请务必保留此出处http://yangke.blog.51cto.com/9530509/1568512

服务器监控-nagios安装篇

标签:nagios安装

原文地址:http://yangke.blog.51cto.com/9530509/1568512

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!