Nagios 搭建与配置

Nagios 搭建与配置

实验环境 centos6.5 两台

实验步骤

一.安装Nagios的依赖关系:

yum -y install httpd gcc glibc glibc-common gd gd-devel php php-mysql mysql mysql-devel mysql-server xinetd

二.安装配置Nagios(监控本机)

  1. 添加nagios运行所需要的用户和组:

    useradd nagios

  2. 把apache加入到nagios组

    usermod -a -G nagios apache

  3. 上传nagios包,加压后编译安装nagios:

    tar -zxf nagios-4.0.3.tar.gz

    cd nagios-4.0.3

    ./configure --with-command-group=nagios  --enable-event-broker

    make all                                           (编译全部)

    make install                                       (安装)

    make install-init                                (生成启动脚本文件)

    make install-commandmode                         (设置组的执行权限)

    make install-config                             (生成配置文件)

    make install-webconf                             (安装nagios的web文件到httpd的conf.d目录下)

  4. 为email指定您想用来接收nagios警告信息的邮件地址,默认是本机的nagios用户:

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

  5. 修改配置 email        [email protected]       这个是默认设置
  6. 创建一个登录nagios web程序的用户,这个用户帐号在以后通过web登录nagios认证时所用:htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
  7. 以上过程配置结束以后需要启动httpd:

    /etc/init.d/httpd start

  8. 编译、安装nagios-plugins(插件)

    tar -zxf nagios-plugins-1.5.tar.gz

    cd nagios-plugins-1.5

    ./configure --with-nagios-user=nagios --with-nagios-group=nagios

    make

    make install

  9. 检查其主配置文件的语法是否正确:

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

  10. 如果上面的语法检查没有问题,接下来就可以正式启动nagios服务了: service nagios start

    关闭selinux:setenforce 0

    关闭防火墙:service iptables stop

    修改本地监控配置文件:vim /usr/local/nagios/etc/objects/localhost.cfg

  11. 通过web界面查看nagios:

    http://your_nagios_IP/nagios

    这时候已将可以监控Linux本机。浏览器测试:‘IP地址’/nagios

三.基于NRPE(桥梁)监控远程Linux主机

  1. 配置-监控端

1).安装NRPE

tar -xf nrpe-2.12.tar.gz

cd nrpe-2.12

./configure --with-nrpe-user=nagios \

--with-nrpe-group=nagios \

--with-nagios-user=nagios \

--with-nagios-group=nagios \

--enable-command-args \

--enable-ssl

make all

make install-plugin                (设置插件权限)

2).添加策略

vim /usr/local/nagios/etc/objects/commands.cfg

添加:define command{

command_name    check_nrpe

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

}

3).定义监控对象,复制一个模板 cp localhost.cfg linux.cfg

编辑模块文件:

vim linux.cfg           (:%s /localhost/linux/g[修改localhost为linux])

host_name  linux

address  被监控端的IP

将这五行注释掉

define hostgroup{

hostgroup_name  linux-servers ; The name of the hostgroup

alias           Linux Servers ; Long name of the group

members         linux     ; Comma separated list of hosts that belong to this group

}

修改 check_command  为 check_nrpe_procs(中间的部分不用动只修改最后的部分)

4).添加模块

vim /usr/local/nagios/etc/objects/commands.cfg

添加:

define command{

command_name    check_nrpe_disk

command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c "check_disk"

}

define command{

command_name    check_nrpe_users

command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c "check_users"

}

define command{

command_name    check_nrpe_procs

command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c "check_procs"

}

define command{

command_name    check_nrpe_load

command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c "check_load"

}

define command{

command_name    check_nrpe_swap

command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c "check_swap"

}

vim vim /usr/local/nagios/etc/nagios.cfg 添加一条

cfg_file=/usr/local/nagios/etc/objects/linux.cfg

cd objects/

5).给权限:

chown nagios.nagios linux.cfg   chmod 664 linux.cfg

6).启动服务:

service nagios restart

2.安装配置-被监控端

1)先添加nagios用户

useradd -s /sbin/nologin nagios

2)NRPE依赖于nagios-plugins,因此,需要先安装nagios-plugins

tar -zxf nagios-plugins-1.5.tar.gz

cd nagios-plugins-1.5

./configure --with-nagios-user=nagios --with-nagios-group=nagios

make all

make install

3)安装NRPE

tar -xf nrpe-2.12.tar.gz

cd nrpe-2.12.tar.gz

./configure --with-nrpe-user=nagios \

--with-nrpe-group=nagios \

--with-nagios-user=nagios \

--with-nagios-group=nagios \

--enable-command-args \

--enable-ssl

make all

make install-plugin

make install-daemon

make install-daemon-config

make install-xinetd            (生成临时服务)

4).修改文件:

vim /etc/xinetd.d/nrpe

only-from=127.0.0.1  10.1.1.2(这个是监控端nagios的IP)(nrpe允许以上IP的机器通过nrpe查询服务)

vim /etc/services

文件最后添加一条:nrpe 5666/tcp  nrpe

5).启动守护进程

service xinetd start

6).配置NRPE

vim /usr/local/nagios/etc/nrpe.cfg

log_facility=daemon

pid_file=/var/run/nrpe.pid

server_address=被监控端的IP

server_port=5666

nrpe_user=nagios

nrpe_group=nagios

allowed_hosts=监控端的IP

command_timeout=60

connection_timeout=300

debug=0

command[check_disk]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p / (记得修改!)

command[check_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200(记得修改!)

添加一条:command[check_swap]=/usr/local/nagios/libexec/check_disk -w 40% -c 20%

7).启动NRPE

/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg –d(临时启动)

或者将如下内容定义为vim /etc/init.d/nrped脚本:

!/bin/bash

chkconfig: 2345 88 12

description: NRPE DAEMON

NRPE=/usr/local/nagios/bin/nrpe

NRPECONF=/usr/local/nagios/etc/nrpe.cfg

case "$1" in

start)

echo -n "Starting NRPE daemon..."

$NRPE -c $NRPECONF -d

echo " done."

;;

stop)

echo -n "Stopping NRPE daemon..."

pkill -u nagios nrpe

echo " done."

;;

restart)

$0 stop

sleep 2

$0 start

;;

*)

echo "Usage: $0 start|stop|restart"

;;

esac

exit 0

chmod -R 777 /etc/init.d/nrped

8).启动服务

/etc/init.d/nrped start

service xinetd restart

时间: 2024-11-17 12:47:42

Nagios 搭建与配置的相关文章

centos6.5监控平台nagios搭建与配置

监控平台之-nagios安装配置 小贝比尔IT技术交流网-小贝比尔 提醒:内存1G  硬盘15G(硬盘最好不要低于15G,不然安装期间会出问题) Selinux和防火墙先关闭,安装成功后再配置 1.关闭selinux  vim/etc/sysconfig/selinu更改:SELINUX=enforcing 为 SELINUX=disabled 1.png (22.12 KB, 下载次数: 0) 下载附件 半小时前 上传 2.关闭iptables  service iptables stop 监

nagios的搭建及配置----(上)

首先说下自己的搭建环境.RedHat6.4系统 nagios-4.0.7.关闭selinux和iptables服务 1,准备工作,安装好nagios所需要的软件 Apache    PHP    GCC compiler GD development libraries yum install httpd php gcc glibc glibc-common  gd gd-devel 2,创建nagios使用的账号和组,首先要切换成管理员账号 [[email protected] ~]usera

nagios的搭建及配置----(中)

上篇文章写到了我们布置的nagios监控本机的状态,下面我们来看下nagios监控服务器状态的配置.至于为什么要这么配置,大家可以自行去百度下看看 使用NRPE插件实现对remote server 进行监控, 远程服务器配置 1,编译安装nagios-plugin,提供检查服务器状态时使用的命令.这些命令可以在/usr/local/nagios/libexec/下 红色方框里面的命令就是我们实验使用的一些基本命令.查看命令帮助,例如check_http --help 即可 tar -zxvf n

nagios的搭建及配置----(下)

上篇我们把被监控端的配置已经完成.下面再让我们回到nagios监控端配置下即可完成对服务器的监控工作 1,安装nrpe tar -zxvf nrpe-2.12.tar.gz -C /usr/src/cd /usr/src/nrpe-2.12/ls ./configure make && make install make install-plugin/usr/local/nagios/libexec/check_nrpe -H 192.168.10.147   //查看是否连接被监控服务器

使用Nagios搭建监控服务器

第二十四章 使用Nagios搭建监控服务器 [关于Nagios] Nagios是一款用于监控系统和网络的开源应用软件,它的模式是服务器-客户端,也就是说首先要在在一台服务器上(server)部署相应的主要套件,然后在要监控的服务器上部署客户端程序,这样server会和client通信,从而监控client端的各项资源.Nagios功能十分强大几乎所有的项目都可以监控,大到服务器的存活状态,小到服务器上的某一个服务(web).这些功能都是通过自定义插件(或者叫做脚本)来实现. 当Nagios监控到

nagios原理及配置详解

1.Nagios如何监控Linux机器 NRPE总共由两部分组成:(1).check_nrpe插件,运行在监控主机上.服务器端安装详见:(2).NRPE daemon,运行在远程的linux主机上(通常就是被监控机)客户端具体安装详见: 图1按照上图,整个的监控过程如下:当Nagios需要监控某个远程linux主机的服务或者资源情况时:1).nagios会运行check_nrpe插件,我们要在nagios配置文件中告诉它要检查什么.2).check_nrpe插件会通过SSL连接到远程的NRPE

打印机故障转移集群之二:目标存储服务器的搭建与配置

目标存储服务器的搭建与配置: 下载StarWind软件http://download.csdn.net/detail/kk185800961/8806409 登录到磁盘集群服务器 打开磁盘管理器,转换到动态磁盘,并创建 简单卷并格式化,如下图: 格式化后,硬盘正常使用,在该盘创建一个文件夹 DiskImage,稍后使用: 防火墙设置:下面我们需要对防火墙进行简单设置,以允许节点服务器访问目标服务器.所用到的端口有3260和3261. 打开 StarWind 软件,进入管理中心,选择本地"连接&q

windows下搭建和配置java环境

基于很多原因,还是得说说java环境的搭建和配置. 1.下载JDK: jdk和jre的区别:jre表示运行环境,jdk除了运行环境,还带有调试开发环境. 地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html 这边主要讲解jdk7的安装. 此外http://www.oracle.com/technetwork/java/javase/downloads/index.html  这

centos6.5监控平台ganglia搭建与配置

监控平台之-ganglia安装配置 小贝比尔IT技术交流网-小贝比尔 提醒:内存1G  硬盘15G(硬盘最好不要低于15G,不然安装期间会出问题) Selinux和防火墙先关闭,安装成功后再配置 1.关闭selinux  vim/etc/sysconfig/selinu更改:SELINUX=enforcing 为 SELINUX=disabled 2.关闭iptables  service iptables stop 监控主机ip:192.168.0.90 Mask:255.255.255.0