Nagios监控配置

1 使用Nagios插件命令监控本机

1.1 问题

本案例要求先部署一台Nagios监控主机,并安装插件软件包,通过插件命令实现如下监控目标:

  • 监控本机Web服务
  • 监控本机FTP服务
  • 监控本机SSH服务
  • 监控本机根分区使用量
  • 监控本机登录用户数量
  • 监控本机运行的进程数量

1.2 方案

使用1台RHEL6虚拟机,安装部署Nagios及配套插件软件包,在本机使用插件命令监控本机服务及资源状态。

在Nagios插件软件包中,包含了大量的监控脚本,常用的插件脚本及对应功能如表-1所示。

表-1 Nagios常用插件及功能

1.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:部署Nagios监控平台

1)安装Apacha、PHP,配置httpd默认首页为index.php

copytextpop-up

  1. [[email protected] ~]# yum -y install httpd php gcc glibc glibc-common gd gd-devel
  2. > libpng libjpeg zlib
  3. [[email protected] ~]# vim /etc/httpd/conf/httpd.conf
  4. DirectoryIndex index.php index.html index.html.var
  5. [[email protected] ~]# service httpd start
  6. [[email protected] ~]# chkconfig httpd on
[[email protected] ~]# yum -y  install  httpd  php  gcc glibc  glibc-common  gd  gd-devel
> libpng libjpeg zlib
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
DirectoryIndex  index.php index.html index.html.var
[[email protected] ~]# service httpd start
[[email protected] ~]# chkconfig httpd on

2)安装Nagios Core

安装Nagios前需要做些准备工作,提前创建一个无法登录系统的普通账户,创建Nagios组账户并将apache用户加入到Nagios组中,默认httpd配置文件中定义的User(工作账户)为apache。

copytextpop-up

  1. [[email protected] ~]# groupadd nagcmd                            //创建组
  2. [[email protected] ~]# useradd -s /sbin/nologin -g nagcmd nagios    //创建用户
  3. [[email protected] ~]# usermod -G nagcmd apache                    //将apache用户加入nagcmd组
  4. [[email protected] ~]# tar -zxvf nagios-3.2.1.tar.gz -C /usr/src
  5. [[email protected] ~]# cd /usr/src/nagios-3.2.1/
  6. [[email protected] ~]# ./configure --with-command-group=nagcmd
  7. [[email protected] ~]# make all
  8. [[email protected] ~]# make install
  9. [[email protected] ~]# make install-init
  10. [[email protected] ~]# make install-config
  11. [[email protected] ~]# make install-commandmode
  12. [[email protected] ~]# make install-webconf
[[email protected] ~]# groupadd  nagcmd							//创建组
[[email protected] ~]# useradd -s /sbin/nologin -g nagcmd nagios	//创建用户
[[email protected] ~]# usermod -G nagcmd  apache					//将apache用户加入nagcmd组
[[email protected] ~]# tar -zxvf nagios-3.2.1.tar.gz -C  /usr/src
[[email protected] ~]# cd /usr/src/nagios-3.2.1/
[[email protected] ~]# ./configure --with-command-group=nagcmd 
[[email protected] ~]#  make all
[[email protected] ~]#  make install
[[email protected] ~]#  make install-init
[[email protected] ~]#  make install-config
[[email protected] ~]#  make install-commandmode
[[email protected] ~]#  make install-webconf

3)安装Nagios插件

前面安装的Nagios Core主要提供的是监控系统的核心功能,包含核心检测引擎和一个基本的Web页面,真正执行监控的程序和指令还需要通过安装Nagios插件来获得。

copytextpop-up

  1. [[email protected] ~]# tar -zxvf nagios-plugins-1.4.14.tar.gz
  2. [[email protected] ~]# cd nagios-plugins-1.4.14
  3. [[email protected]svr5 nagios-plugins-1.4.14]#./configure --with-nagios-user=nagios \
  4. > --with-nagios-group=nagcmd
  5. [[email protected]svr5 nagios-plugins-1.4.14]# make && make install
  6. [[email protected]svr5 libexec]# ls /usr/local/nagios/libexec/            //查看监控脚本
  7. check_apt check_ftp check_mrtgtraf check_ping check_time
  8. check_breeze check_http check_mysql check_pop check_udp
  9. check_by_ssh check_icmp check_mysql_query check_procs check_ups
  10. check_clamd check_ide_smart check_nagios check_real check_uptime
  11. check_cluster check_ifoperstatus check_nntp check_rpc check_users
  12. check_dhcp check_ifstatus check_nntps check_sensors check_wave
  13. check_dig check_imap check_nt check_simap negate
  14. check_disk check_ircd check_ntp check_smtp urlize
  15. check_disk_smb check_jabber check_ntp_peer check_spop utils.pm
  16. check_dns check_load check_ntp_time check_ssh utils.sh
  17. check_dummy check_log check_nwstat check_ssmtp
  18. check_file_age check_mailq check_oracle check_swap
  19. check_flexlm check_mrtg check_overcr check_tcp
[[email protected] ~]# tar -zxvf nagios-plugins-1.4.14.tar.gz 
[[email protected] ~]# cd nagios-plugins-1.4.14
[[email protected] nagios-plugins-1.4.14]#./configure --with-nagios-user=nagios  > --with-nagios-group=nagcmd
[[email protected] nagios-plugins-1.4.14]# make && make install  
[[email protected] libexec]# ls /usr/local/nagios/libexec/			//查看监控脚本
check_apt       check_ftp           check_mrtgtraf     check_ping     check_time
check_breeze    check_http          check_mysql        check_pop      check_udp
check_by_ssh    check_icmp          check_mysql_query  check_procs    check_ups
check_clamd     check_ide_smart     check_nagios       check_real     check_uptime
check_cluster   check_ifoperstatus  check_nntp         check_rpc      check_users
check_dhcp      check_ifstatus      check_nntps        check_sensors  check_wave
check_dig       check_imap          check_nt           check_simap    negate
check_disk      check_ircd          check_ntp          check_smtp     urlize
check_disk_smb  check_jabber        check_ntp_peer     check_spop     utils.pm
check_dns       check_load          check_ntp_time     check_ssh      utils.sh
check_dummy     check_log           check_nwstat       check_ssmtp
check_file_age  check_mailq         check_oracle       check_swap
check_flexlm    check_mrtg          check_overcr       check_tcp

步骤二:使用监控脚本监控资源

1)监控Web服务器资源

check_http脚本的作用主要作用是检查Web服务,-I指定需要监控的服务器域名或IP地址,-w设置服务器响应时间的警报值(服务器响应时间超过该值则警告,默认单位为秒),-c设置服务器响应时间的严重故障警报值(服务器响应时间超过该值则提示严重错误,默认单位为秒),更多参数可以使用check_httpd -h来获得。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]# ./check_http -w 5 -c 10 –I 127.0.0.1
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]# ./check_http -w 5 -c 10 –I 127.0.0.1

2)监控FTP服务

check_ftp脚本的作用主要作用是检查FTP服务,-H指定需要监控的服务器域名或IP地址,-w设置服务器响应时间的阈值(服务器响应时间超过该值则警告,默认单位为秒),-c设置服务器响应时间的严重错误的阈值(服务器响应时间超过该值则提示严重错误,默认单位为秒),更多参数可以使用check_ftp -h来获得。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]# ./check_ftp -w 5 -c 10 -H 127.0.0.1
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]# ./check_ftp -w 5 -c 10 -H 127.0.0.1

3)监控SSH服务

check_ssh脚本的作用主要作用是检查SSH服务,-H指定监控的主机名称或IP地址,-p指定SSH服务的端口号信息。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]# ./check_ssh -H 127.0.0.1 –p 22
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]# ./check_ssh -H 127.0.0.1 –p 22

4)监控根分区使用情况

check_disk脚本的作用主要作用是检查磁盘使用情况,-u设置磁盘存储空间的单位(可以使用的单位有:kB、MB、GB、TB,默认单位为MB),-w设定存储剩余空间的警告提示的报警值,-c设定磁盘剩余空间严重错误的报警值,-p指定监控的分区挂载点。-w和-c除了可以监控磁盘的剩余空间外,还可以监控剩余磁盘的百分比如,-w 50%,-c 40%。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]#./check_disk -u MB -w 9000 -c 5000 -p /
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]#./check_disk -u MB -w 9000 -c 5000 -p /

5)监控登录用户数量

check_users脚本的作用主要作用是检查当前系统登录账户的情况,-w设置警告的阈值,-c设置严重错误的阈值。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]# ./check_users -w 5 -c 8
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]# ./check_users -w 5 -c 8

6)监控本机运行的进程数量

check_procs脚本的作用是监控本地进程,-w设置进程数量警告的阈值,-c设置严重错误的阈值。该脚本时可以使用--metric设置监控类型,默认监控进程数量,--metric=CPU则监控进程占用的CPU百分比,任何一个进程占用CPU百分比超过-w设置的值将出现警告信息。

copytextpop-up

  1. [[email protected] ~]# /usr/local/nagios/libexec
  2. [[email protected] ~]# ./check_procs -w 100 -c 120 //监控进程数量
  3. [[email protected] ~]# check_procs -w 10 -c 20 --metric=CPU //监控CPU占用
[[email protected] ~]# /usr/local/nagios/libexec 
[[email protected] ~]# ./check_procs -w 100 -c 120        //监控进程数量
[[email protected] ~]# check_procs -w 10 -c 20 --metric=CPU  //监控CPU占用

2 搭建Nagios监控服务器

2.1 问题

沿用练习一,通过调整Nagios服务端配置,实现以下目标:

  1. Web服务
  2. ssh服务
  3. 登录的用户数

2.2 方案

默认安装完Nagios Core和nagios-plugins之后,我们就可以直接使用脚本命令来监控本机资源,如果还希望直接使用Nagios监控平台实现动态监控本机资源的话,还需要修改Nagios的配置文件,重点配置文件如下:

  • 监控命令配置文件(commands.cfg)
  • 监控对象配置文件(localhost.cfg)
  • Nagios主配置文件(nagios.cfg)
  • 配置页面登录配置文件(nagios.conf)

2.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:修改配置文件

1)修改监控命令配置文件

在该文件中使用define command指令定义监控命令,command_name定义监控命令的名称,command_line定义监控的功能。定义完成后就可以到特定的监控对象配置文件中调用该监控命令,实现监控的目的。

copytextpop-up

  1. [[email protected] ~]# vim /usr/local/nagios/etc/objects/commands.cfg
  2. define command {
  3. command_name check_local_users
  4. command_line $USER1$/check_users -w $ARG1$ -c $ARG2$
  5. }
  6. define command {
  7. command_name check_http
  8. command_line $USER1$/check_http -I $HOSTADDRESS$ $ARG1$
  9. }
  10. define command {
  11. command_name check_ssh
  12. command_line $USER1$/check_ssh -H $HOSTADDRESS$
  13. }
[[email protected] ~]# vim /usr/local/nagios/etc/objects/commands.cfg
define command   {
        command_name    check_local_users
        command_line      $USER1$/check_users -w $ARG1$ -c $ARG2$
 }
define command  {
        command_name    check_http
        command_line    $USER1$/check_http -I $HOSTADDRESS$ $ARG1$
}
define command  {
        command_name    check_ssh
        command_line    $USER1$/check_ssh -H $HOSTADDRESS$
}

2)修改监控对象的配置文件(多个监控对象可以创建多个文件)

该文件中使用define host定义监控对象,包括被监控主机的主机名、IP地址、别名等。使用define service定义需要监控的服务,host name定义哪个主机实施监控,check_command定义调用哪个监控命令实现监控。

copytextpop-up

  1. [[email protected] ~]# vim /usr/local/nagios/etc/objects/localhost.cfg
  2. define host {
  3. use                    linux-server
  4. host_name         localhost
  5. alias                    localhost
  6. address                127.0.0.1
  7. }
  8. define service{
  9. use                        local-service
  10. host_name                    localhost
  11. service_description        Current Users            //监控登录用户数量
  12. check_command                check_local_users!20!50 //20为警告阈值,50为严重阈值
  13. }
  14. define service{
  15. use                        local-service
  16. host_name                    localhost
  17. service_description        http server            //监控http服务
  18. check_command                check_http
  19. }
  20. define service{
  21. use                        local-service
  22. host_name                    localhost
  23. service_description        ssh server            //监控ssh服务
  24. check_command                check_ssh
  25. }
[[email protected] ~]# vim /usr/local/nagios/etc/objects/localhost.cfg
define host  {
        use					linux-server 
        host_name         		localhost
        alias					localhost
        address				127.0.0.1
        }
define service{
        use						local-service 
        host_name					localhost
        service_description		Current Users			//监控登录用户数量
        check_command				check_local_users!20!50 //20为警告阈值,50为严重阈值
        }
define service{
        use						local-service 
        host_name					localhost
        service_description		http server			//监控http服务
        check_command				check_http 
        }
define service{
        use						local-service 
        host_name					localhost
        service_description		ssh server			//监控ssh服务
        check_command				check_ssh 
        }

3)修改Nagios主配置文件nagios.cfg

通过该主配置文件,加载上面定义的配置文件内容。

copytextpop-up

  1. [[email protected] ~]# vim /usr/local/nagios/etc/nagios.cfg
  2. .. ..
  3. cfg_file=/usr/local/nagios/etc/objects/commands.cfg
  4. cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
  5. cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
  6. cfg_file=/usr/local/nagios/etc/objects/templates.cfg
  7. cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
  8. .. ..
[[email protected] ~]# vim /usr/local/nagios/etc/nagios.cfg
.. ..
cfg_file=/usr/local/nagios/etc/objects/commands.cfg
cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
cfg_file=/usr/local/nagios/etc/objects/templates.cfg
cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
.. ..

4)修改web页面认证配置文件

copytextpop-up

  1. [[email protected] ~]# vim /etc/httpd/conf.d/nagios.conf
  2. <Directory "/usr/local/nagios/sbin">
  3. ……
  4. ……
  5. AuthName "Nagios Access"
  6. AuthType Basic
  7. AuthUserFile /usr/local/nagios/etc/htpasswd.users
  8. Require valid-user
  9. </Directory>
  10. [[email protected] ~]# ]# htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
  11. New password:
  12. Re-type new password:
  13. Adding password for user nagadmin
[[email protected] ~]# vim /etc/httpd/conf.d/nagios.conf 
<Directory "/usr/local/nagios/sbin">
   ……
   ……
   AuthName "Nagios Access"
   AuthType Basic
   AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user
</Directory>
[[email protected] ~]# ]# htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
New password: 
Re-type new password: 
Adding password for user nagadmin

步骤二:启动服务,查看监控页面

1)启动Nagios服务

copytextpop-up

  1. [[email protected] ~]# /etc/init.d/nagios start
  2. Starting nagios:This account is currently not available.
  3. done.
[[email protected] ~]# /etc/init.d/nagios start
Starting nagios:This account is currently not available.
done.

2)启动httpd服务:

copytextpop-up

  1. [[email protected] ~]# service httpd restart
  2. 启动 httpd: [确定]
[[email protected] ~]# service  httpd restart
启动 httpd:                                               [确定]

3)登录监控Web页面,使用浏览器访问http://监控服务器IP地址/nagios

3 使用Nagios监控远端主机

3.1 问题

沿用练习二,通过调整Naiogs配置,实现以下目标:

  • 监控服务器IP地址为192168.170.92
  • 被监控主机ip地址是192.168.170.49
  • 监控被监控主机上运行的vsftpd、httpd服务
  • 监控被监控主机上运行的进程数、CPU负载、登录的用户数、根分区的使用量

3.2 方案

使用Nagios监控其他主机的资源需要使用nrpe扩展,监控拓扑结构如图-1所示。

图-1

3.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:配置被监控端主机

1)安装nagios-plugins

copytextpop-up

  1. [[email protected] ~]# useradd nagios
  2. [[email protected] ~]# groupadd nagcmd
  3. [[email protected] ~]# usermod -G nagcmd nagios
  4. [[email protected] ~]# tar -zxvf nagios-plugins-1.4.14.tar.gz
  5. [[email protected] ~]# cd nagios-plugins-1.4.14
  6. [[email protected]localhost nagios-plugins]# ./configure
  7. [[email protected]localhost nagios-plugins]# make && make install
[[email protected] ~]# useradd nagios
[[email protected] ~]# groupadd nagcmd
[[email protected] ~]# usermod -G nagcmd nagios
[[email protected] ~]# tar -zxvf nagios-plugins-1.4.14.tar.gz
[[email protected] ~]# cd nagios-plugins-1.4.14
[[email protected] nagios-plugins]# ./configure
[[email protected] nagios-plugins]# make  && make  install

2)安装nrpe扩展

Nagios监控远程主机资源是需要调用nrpe扩展,因此监控主机和被监控主机均需要安装nrpe。

copytextpop-up

  1. [[email protected] ~]# tar -zxvf nrpe-2.12.tar.gz
  2. [[email protected] ~]# cd nrpe-2.12
  3. [[email protected]localhost nrpe-2.12]# ./configure
  4. [[email protected]localhost nrpe-2.12]# make && make install
  5. [[email protected]localhost nrpe-2.12]#make install-plugin
  6. [[email protected]localhost nrpe-2.12]#make install-daemon
  7. [[email protected]localhost nrpe-2.12]#make install-daemon-config
  8. [[email protected]localhost nrpe-2.12]#make install-xinetd
[[email protected] ~]# tar -zxvf nrpe-2.12.tar.gz 
[[email protected] ~]# cd nrpe-2.12
[[email protected] nrpe-2.12]# ./configure   
[[email protected] nrpe-2.12]# make && make install
[[email protected] nrpe-2.12]#make install-plugin
[[email protected] nrpe-2.12]#make install-daemon
[[email protected] nrpe-2.12]#make install-daemon-config
[[email protected] nrpe-2.12]#make install-xinetd

3)修改nrpe文件文件

copytextpop-up

  1. [[email protected] ~]# vim /usr/local/nagios/etc/nrpe.cfg
  2. command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10
  3. //定义监控登录用户数量的警告及严重错误的阈值分别为5和10
  4. command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20
  5. //定义监控本机CPU负载的警告及严重错误阈值,负载按最近1分钟,5分钟,15分钟分别计算
  6. command[check_sda1]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p /dev/sda1
  7. //定义监控本机磁盘/dev/sda1的使用情况
  8. command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z
  9. //定义监控本机僵死进程的警告及严重错误阈值分别为5和10
  10. command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200
  11. //定义监控进程数量的警告及严重错误阈值分别为150和200
[[email protected] ~]# vim /usr/local/nagios/etc/nrpe.cfg
command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10
//定义监控登录用户数量的警告及严重错误的阈值分别为5和10
command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20
//定义监控本机CPU负载的警告及严重错误阈值,负载按最近1分钟,5分钟,15分钟分别计算
command[check_sda1]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p /dev/sda1
//定义监控本机磁盘/dev/sda1的使用情况
command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z
//定义监控本机僵死进程的警告及严重错误阈值分别为5和10
command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200 
//定义监控进程数量的警告及严重错误阈值分别为150和200

4)修改配置文件,启动nrpe服务

copytextpop-up

  1. [[email protected] ~]# vim /etc/xinetd.d/nrpe                //xinet配置文件
  2. service nrpe {
  3. flags = REUSE
  4. socket_type = stream
  5. port = 5666                            //定义监听的端口号
  6. wait = no
  7. user = nagios
  8. group = nagios
  9. server = /usr/local/nagios/bin/nrpe
  10. server_args = -c /usr/local/nagios/etc/nrpe.cfg --inetd
  11. log_on_failure += USERID
  12. disable = no
  13. only_from = 127.0.0.1 192.168.170.92        //定义允许哪些主机监控本机
  14. }
  15. [[email protected] ~]# vim /etc/services                 //指定nrpe对应端口
  16. nrpe 5666/tcp # TCP port service nrpe
  17. [[email protected] ~]# /etc/init.d/xinetd restart
  18. 停止 xinetd: [确定]
  19. 启动 xinetd: [确定]
  20. [[email protected] ~]# netstat -utnalp | grep :5666
  21. tcp 0 0 0.0.0.0:5666        0.0.0.0:*        LISTEN 29488/xinetd
[[email protected] ~]# vim /etc/xinetd.d/nrpe				//xinet配置文件
service  nrpe  {
        flags           = REUSE
        socket_type     = stream
        port            = 5666							//定义监听的端口号
        wait            = no
        user            = nagios
        group           = nagios
        server          = /usr/local/nagios/bin/nrpe
        server_args     = -c /usr/local/nagios/etc/nrpe.cfg --inetd
        log_on_failure  += USERID
        disable         = no
        only_from       = 127.0.0.1 192.168.170.92		//定义允许哪些主机监控本机
}
[[email protected] ~]# vim  /etc/services     				//指定nrpe对应端口
nrpe            5666/tcp                        # TCP port service nrpe
[[email protected] ~]# /etc/init.d/xinetd restart
停止 xinetd:                                              [确定]
启动 xinetd:                                              [确定]
[[email protected] ~]# netstat -utnalp  |  grep  :5666
tcp        0      0 0.0.0.0:5666		0.0.0.0:*		LISTEN      29488/xinetd

步骤二:配置Nagios监控服务器

1)安装nrpe软件包

copytextpop-up

  1. [[email protected] ~]# tar -zxvf nrpe-2.12.tar.gz
  2. [[email protected] ~]# cd nrpe-2.12
  3. [[email protected]svr5 nrpe-2.12]# ./configure
  4. [[email protected]svr5 nrpe-2.12]# make
  5. [[email protected]svr5 nrpe-2.12]# make install
  6. [[email protected]svr5 nrpe-2.12]# make install-plugin
[[email protected] ~]# tar -zxvf  nrpe-2.12.tar.gz 
[[email protected] ~]# cd nrpe-2.12
[[email protected] nrpe-2.12]# ./configure 
[[email protected] nrpe-2.12]# make
[[email protected] nrpe-2.12]# make install
[[email protected] nrpe-2.12]# make install-plugin

2)修改监控命令配置文件,调用nrpe实现监控功能:

copytextpop-up

  1. [[email protected] ~]# vim commands.cfg
  2. define command {
  3. command_name check_nrpe
  4. command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
  5. }
[[email protected] ~]# vim  commands.cfg
define command  {
        command_name    check_nrpe
        command_line  $USER1$/check_nrpe -H $HOSTADDRESS$  -c  $ARG1$
}

3)创建监控对象配置文件

可以使用localhost.cfg作为模板复制,生成新的监控对象配置文件。

copytextpop-up

  1. [[email protected] ~]# cd /usr/local/nagios/etc/objects/
  2. [[email protected]svr5 objects]# cp localhost.cfg 49-server.cfg
  3. [[email protected]svr5 objects]# vim 49-server.cfg
  4. define host {
  5. use linux-server
  6. host_name                49server
  7. alias mail.tarena.com
  8. address                192.168.170.49        //定义监控对象为被监控主机IP
  9. }
  10. define service {
  11. use                            local-service
  12. host_name                        49server
  13. service_description            PING                //监控被监控主机ping状态
  14. check_command                    check_ping!100.0,20%!500.0,60%
  15. }
  16. define service {
  17. use                            local-service
  18. host_name 49server
  19. service_description            SSH                //监控被监控主机的ssh状态
  20. check_command                    check_ssh
  21. notifications_enabled            0
  22. }
  23. define service {
  24. use                            local-service
  25. host_name                        49server
  26. service_description            Current Users    //调用nrpe监控用户数量
  27. check_command             check_nrpe!check_users
  28. }
  29. define service {
  30. use                            local-service
  31. host_name                        49server
  32. service_description            CPU load            //调用nrpe监控CPU负载
  33. check_command             check_nrpe! check_load
  34. }
  35. define service {
  36. use                            local-service
  37. host_name                        49server
  38. service_description            root partition    //调用nrpe监控磁盘
  39. check_command             check_nrpe!check_sda1
  40. }
  41. define service {
  42. use                            local-service
  43. host_name                        49server
  44. service_description            process number    //调用nrpe监控进程数量
  45. check_command             check_nrpe! check_total_procs
  46. }
  47. define service {
  48. use                            local-service
  49. host_name                        49server
  50. service_description            vsftpd server    //监控被监控主机FTP服务
  51. check_command             check_ftp
  52. }
  53. define service {
  54. use                            local-service
  55. host_name                        49server
  56. service_description            httpd server        //监控被监控主机HTTP服务
  57. check_command             check_http
  58. }
[[email protected] ~]# cd  /usr/local/nagios/etc/objects/
[[email protected] objects]# cp localhost.cfg 49-server.cfg
[[email protected] objects]# vim 49-server.cfg
define host {
        use                      linux-server
        host_name				49server
        alias                    mail.tarena.com
        address				192.168.170.49		//定义监控对象为被监控主机IP
        }
define service {
        use							local-service
        host_name						49server
        service_description			PING				//监控被监控主机ping状态
        check_command					check_ping!100.0,20%!500.0,60%
        }
define service  {
        use							local-service
        host_name                         49server
        service_description			SSH				//监控被监控主机的ssh状态
        check_command					check_ssh
        notifications_enabled			0
        }
define service  {
        use							local-service
        host_name						49server
        service_description			Current Users	//调用nrpe监控用户数量
        check_command        			check_nrpe!check_users
        }
define service  {
        use							local-service
        host_name						49server
        service_description			CPU load			//调用nrpe监控CPU负载
        check_command        			check_nrpe! check_load
        }
define service  {
        use							local-service
        host_name						49server
        service_description			root partition	//调用nrpe监控磁盘
        check_command        			check_nrpe!check_sda1
        }

define service  {
        use							local-service
        host_name						49server
        service_description			process number	//调用nrpe监控进程数量
        check_command        			check_nrpe! check_total_procs
        }
define service  {
        use							local-service
        host_name						49server
        service_description			vsftpd server	//监控被监控主机FTP服务
        check_command        			check_ftp
        }
define service  {
        use							local-service
        host_name						49server
        service_description			httpd server		//监控被监控主机HTTP服务
        check_command        			check_http
        }

4)修改Nagios主配置文件nagios.cfg

通过该主配置文件,加载上面定义的配置文件内容。

copytextpop-up

  1. [[email protected] ~]# vim /usr/local/nagios/etc/nagios.cfg
  2. .. ..
  3. cfg_file=/usr/local/nagios/etc/objects/commands.cfg
  4. cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
  5. cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
  6. cfg_file=/usr/local/nagios/etc/objects/templates.cfg
  7. cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
  8. cfg_file=/usr/local/nagios/etc/objects/49-server.cfg
  9. .. ..
[[email protected] ~]# vim /usr/local/nagios/etc/nagios.cfg
.. ..
cfg_file=/usr/local/nagios/etc/objects/commands.cfg
cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
cfg_file=/usr/local/nagios/etc/objects/templates.cfg
cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
cfg_file=/usr/local/nagios/etc/objects/49-server.cfg
.. ..

5)重启nagios服务,查看监控页面

重启nagios服务后,进入登录监控页面刷新查看新的监控状态。

copytextpop-up

  1. [[email protected] ~]# /etc/init.d/nagios restart
时间: 2024-10-20 05:34:22

Nagios监控配置的相关文章

nagios 监控配置介绍(一)

Nagios是一款开源的免费网络监视工具,能有效监控Windows.Linux和Unix的主机状态,交换机路由器等网络设置,打印机等. 在系统或服务状态异常时发出邮件或短信报警第一时间通知网站运维人员,在状态恢复后发出正常的邮件或短信通知. 作为老牌的监控软件,大家应该学习,本文介绍使用配置的方法. 监控服务端和客户端安装省略. #准备阶段 信息列表                 服务器名称              服务器IP              nagios server 10.89

nagios 监控配置介绍(二)

#配置服务端监控客户端 [[email protected] etc]# cd objects/ [[email protected] objects]# vi hosts.cfg # Define a host for the local machine define host{ use                     linux-server host_name               1.3-samba alias                   1.3-samba add

浅谈 nagios监控配置

该文档只针对于配置   打乱了commands.cfg templates.cfg contacts.cfg localhost.cfg  timeperiods.cfg  resource.cfg 讲解 在讲配置之前最重要的一个命令:    nagios目录/bin/nagios -v nagios.cfg  (这是调试是否配置有错的命令参数 -v  很有用)    步入正题: 笔者认为了解nagios先得了解工作的逻辑:nagios程序调用监控顺序:        首先读取第一个配置文件 n

nagios 监控配置介绍(三)

1.主动监控模式 监控客户端LNMP 网站服务 服务器端: [[email protected]]#cd /usr/local/nagios/etc/objects [[email protected] objects]# vi commands.cfg #在最下面增加: # 'check_weburl' command definition define command{ command_name    check_weburl command_line    $USER1$/check_ht

linux 下nagios监控系统的配置

Nagios是一个监视系统运行状态和网络信息的监视系统.Nagios能监视所指定的本地或远程主机以及服务,同时提供异常通知功能,可运行在Linux/Unix平台之上,同时提供一个可选的基于浏览器的WEB界面以方便系统管理人员查看网络状态,各种系统问题,以及日志等. 工作原理图(取自网上) 配置图 一.配置前准备: 1.同步两台机子时间 ntpdate ntpdate time.nist.gov 添加定时任务,每10分钟同步一次网络时间 [[email protected] ~]# crontab

Nagios监控系统主机与服务配置

配置环境: 监控服务器 :192.168.189.132 被监控客户端:192.168.189.131(linux) 192.168.1.152(windows) Nagios相关配置文件概述: # cd /usr/local/nagios/etc/   相关文件用途如下表: 文件名或目录名 用途 cgi.cfg 控制CGI访问的配置文件 nagios.cfg Nagios 主配置文件 resource.cfg 变量定义文件,又称为资源文件,在些文件中定义变量,以便由其他配置文件引用,如$USE

Centos 7安装与配置nagios监控(一)

目  录 序言(必备知识) 一.安装规划 1.1系统环境 1.2所需软件包 二.配置安装环境 2.1同步时间 2.2禁用SElinux 2.3 xftp上传软件包 2.4安装邮件服务 三.监控主机安装 3.1安装nagios的运行环境 3.2增加用户 3.3安装nagios 3.4配置权限 3.5安装插件 3.6安装nrpe 四.远程主机安装 4.1配置运行环境 4.2安装nagios-plugin 4.3安装nrpe 4.4启动nrpe 五.监控主机安装PNP 5.1配置开发环境 5.2安装p

Centos 7安装与配置nagios监控详细图解(二)

目 录 序言(必备知识) 一.安装规划 1.1系统环境 1.2所需软件包 二.配置安装环境 2.1同步时间 2.2禁用SElinux 2.3 xftp上传软件包 2.4安装邮件服务 三.监控主机安装 3.1安装nagios的运行环境 3.2增加用户 3.3安装nagios 3.4配置权限 3.5安装插件 3.6安装nrpe 四.远程主机安装 4.1配置运行环境 4.2安装nagios-plugin 4.3安装nrpe 4.4启动nrpe 五.监控主机安装PNP 5.1配置开发环境 5.2安装pn

第25章 MySQL replication(主从)配置及加入nagios监控

环境介绍: master:23.247.76.253 [[email protected]_client1 tool]# mysql -V mysql  Ver 14.14 Distrib 5.6.32, for linux-glibc2.5 (x86_64) using  EditLine wrapper [[email protected]_client1 tool]# cat /etc/redhat-release CentOS release 6.7 (Final) slave:23.2