monicazhang 发表于 2016-4-18 11:00:00

nagios服务端安装步骤

来自:网络

1、系统环境: 操作系统:CentOS-5.7 x86_64 Apache版本: Apache-2.2.22 Nagios版本: nagios-3.3.1 GD库: gd-2.0.33 2、安装前准备: 2.1、安装GD库 ?                nagios安装      

yum install -y gd.x86_64 gd-devel.x86_64




2.2、安装Apache html/654.html 2.3、下载Nagios,Nagios-plugins,nrpe 官方网站 http://www. /download/ 截至2012.3.9在官网上的最新版本分别是 版本:nagios-3.3.1 ?

wget projects/ ... 3.1.tar.gz/download




版本:nagios-plugins-1.4.15 ?

wget h... 3502&use_mirror=ncu




nrpe下载地址http://www. /download/addons/ 版本:nrpe-2.13 ?

wget h... 624&use_mirror=nchc




2.4、安装前注意事项: Nagios,Nagios-plugins,nrpe安装在监控服务器上。 nrpe安装在Linux/Unix被监控端。 3、创建帐号及组 3.1、创建帐号 ?

/usr/sbin/useradd -m nagios passwd nagios




3.2、创建组 ?                         开源监控软件
/usr/sbin/usermod -a -G nagios nobody




nobody为运行apache的帐号。 4、安装配置nagios 4.1、解压&安装 ?

cd /usr/local/src/tarbag/ tar zxvf nagios-3.3.1.tar.gz -C ../software/ cd ../software/nagios/
./configure --prefix=/usr/local/nagios --with-command-group=nagios --with-gd-lib=/usr/lib64/ --with-gd-inc=/usr/lib64/ make all




# 使用make install来安装主程序,CGI和HTML文件 ?

make install




# 使用make install-init在/etc/rc.d/init.d安装启动脚本 ?

make install-init




# 使用make install-cofig来安装示例配置文件,安装的路径是/usr/local/nagios/etc. ?            nagios配置
make install-config




# 使用make install-commandmode来配置目录权限 ?

make install-commandmode




注: nagios目录功能的简要说明: bin Nagios执行程序所在目录,nagios文件即为主程序 etc Nagios配置文件位置 sbin Nagios Cgi文件所在目录,也就是执行外部命令所需文件所在的目录 Share Nagios网页文件所在的目录 var Nagios日志文件、spid 等文件所在的目录 var/archives 日志归档目录 var/rw 用来存放外部命令文件 4.2、配置apache 将下面行加入apache配置文件的alias模块 ?

----------------------------------------
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"

<Directory "/usr/local/nagios/sbin">
   Options ExecCGI
   AllowOverride None
   Order allow,deny
   Allow from all
   AuthName "Nagios Access"
   AuthType Basic
   AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user
</Directory>

Alias /nagios "/usr/local/nagios/share"

<Directory "/usr/local/nagios/share">
   Options None
   AllowOverride None
   Order allow,deny
   Allow from all
   AuthName "Nagios Access"
   AuthType Basic
   AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user
</Directory>
----------------------------------------




创建apache目录验证文件 ?

htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
New password: (输入密码)
Re-type new password: (再输入一次密码)
Adding password for user nagiosadmin




重启apache: ?

apachectl -k restart




配置nagios配置文件 ?

vi /usr/local/nagios/etc/objects/contacts.cfg




将里面的email地址改为自己的email地址。 5、安装Nagios插件 ?               监控软件
tar zxvf nagios-plugins-1.4.15.tar.gz -C ../software/ cd ../software/nagios-plugins-1.4.15/
./configure --with-nagios-user=nagios --with-nagios-group=nagios make make install




6、启动Nagios 配置机器启动时自动启动Nagios ?

chkconfig --add nagios
chkconfig nagios on




检查Nagios配置文件 ?

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




# 启Nnagios ?

service nagios start




7、关闭SELinux及防火墙(切勿小视) 7.1、关闭SELinux ?

vi /etc/selinux/config




将下面行设为disabled ?

SELINUX=disabled




重启系统即可生效 或者使用setenforce关闭selinux usage: setenforce [ Enforcing | Permissive | 1 | 0 ] ?

setenforce 0




这样就可以不用重启系统即可生效了 7.2、关闭防火墙 ?                      nagios实施
service iptables stop
chkconfig iptables off




如果开启防火墙,应该允许访问apache(一般为80端口)并允许nagios去抓取被监控机信息(一般nrpe为5666端口)。 8、访问Nagios服务器 http://IP/nagios/ 输入用户名及密码登录。 9、安装nrpe插件 nrpe是用来监控Linux机器的插件 ?

tar zxvf nrpe-2.13.tar.gz -C ../software/ cd ../software/nrpe-2.13
./configure make all




在Nagios服务器端只要安装nrpe监控插件就行 ?

make install-plugin




在/usr/local/nagios/etc/objects/commands.cfg中定义check_nrpe命令 ?                  nagios培训
vi /usr/local/nagios/etc/objects/commands.cfg




修改配置文件如下 ?

########################################################################
#
# 2012.03.09 add by Tony
# NRPE COMMAND
#
########################################################################
# 'check_nrpe ' command definition define command{
      command_name check_nrpe
      command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
      }




想做Nagios, Zabbix,Cacti,iTop各种交流的,可以进入开源监控工具Nagios交流QQ群号 :476809427
页: [1]
查看完整版本: nagios服务端安装步骤