温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Linux下Nagios的安装与配置<< 一 >>

发布时间:2020-10-14 16:31:06 来源:网络 阅读:443 作者:echo_zou 栏目:移动开发

一、Nagios简介

注:以下文档跟据网上下载文档进行稍做修改,联系人使用组,主机使用组,供参考!

Nagios是一款开源的电脑系统和网络监视工具,能有效监控WindowsLinuxUnix的主机状态,交换机路由器等网络设置,打印机等。在系统或服务状态异常时发出邮件或短信报警第一时间通知网站运维人员,在状态恢复后发出正常的邮件或短信通知。

Nagios原名为NetSaint,由Ethan Galstad开发并维护至今。NAGIOS是一个缩写形式: "NagiosAin't Gonna Insist On Sainthood" Sainthood 翻译为圣徒,而"Agios""saint"的希腊表示方法。Nagios被开发在Linux下使用,但在Unix下也工作得非常好。

主要功能

·网络服务监控(SMTPPOP3HTTPNNTPICMPSNMPFTPSSH

·主机资源监控(CPU loaddisk usagesystem logs),也包括Windows主机(使用NSClient++plugin

·可以指定自己编写的Plugin通过网络收集数据来监控任何情况(温度、警告……

·可以通过配置Nagios远程执行插件远程执行脚本

·远程监控支持SSHSSL加通道方式进行监控

·简单的plugin设计允许用户很容易的开发自己需要的检查服务,支持很多开发语言(shell scriptsC++PerlrubyPythonPHPC#等)

·包含很多图形化数据PluginsNagiosgraphNagiosgrapherPNP4Nagios等)

·可并行服务检查

·能够定义网络主机的层次,允许逐级检查,就是从父主机开始向下检查

·当服务或主机出现问题时发出通告,可通过email, pager, sms 或任意用户自定义的plugin进行通知

·能够自定义事件处理机制重新激活出问题的服务或主机

·自动日志循环

·支持冗余监控

·包括Web界面可以查看当前网络状态,通知,问题历史,日志文件等

二、Nagios工作原理

Nagios的功能是监控服务和主机,但是他自身并不包括这部分功能,所有的监控、检测功能都是通过各种插件来完成的。

  启动Nagios后,它会周期性的自动调用插件去检测服务器状态,同时Nagios会维持一个队列,所有插件返回来的状态信息都进入队列,Nagios每次都从队首开始读取信息,并进行处理后,把状态结果通过web显示出来。

Nagios提供了许多插件,利用这些插件可以方便的监控很多服务状态。安装完成后,在nagios主目录下的/libexec里放有nagios自带的可以使用的所有插件,如,check_disk是检查磁盘空间的插件,check_load是检查CPU负载的,等等。每一个插件可以通过运行./check_xxx –h 来查看其使用方法和功能。

Nagios可以识别4种状态返回信息,即 0(OK)表示状态正常/绿色、1(WARNING)表示出现警告/×××、2(CRITICAL)表示出现非常严重的错误/红色、3(UNKNOWN)表示未知错误/深×××。Nagios根据插件返回来的值,来判断监控对象的状态,并通过web显示出来,以供管理员及时发现故障。

四种监控状态

  再说报警功能,如果监控系统发现问题不能报警那就没有意义了,所以报警也是nagios很重要的功能之一。但是,同样的,Nagios 自身也没有报警部分的代码,甚至没有插件,而是交给用户或者其他相关开源项目组去完成的。

Nagios 安装,是指基本平台,也就是Nagios软件包的安装。它是监控体系的框架,也是所有监控的基础。

  打开Nagios官方的文档,会发现Nagios基本上没有什么依赖包,只要求系统是Linux或者其他Nagios支持的系统。不过如果你没有安装apachehttp服务),那么你就没有那么直观的界面来查看监控信息了,所以apache姑且算是一个前提条件。关于apache的安装,网上有很多,照着安装就是了。安装之后要检查一下是否可以正常工作。

  知道Nagios 是如何通过插件来管理服务器对象后,现在开始研究它是如何管理远端服务器对象的。Nagios 系统提供了一个插件NRPENagios 通过周期性的运行它来获得远端服务器的各种状态信息。它们之间的关系如下图所示:

Nagios 通过NRPE 来远端管理服务

1. Nagios 执行安装在它里面的check_nrpe 插件,并告诉check_nrpe 去检测哪些服务。

2. 通过SSLcheck_nrpe 连接远端机子上的NRPE daemon

3. NRPE 运行本地的各种插件去检测本地的服务和状态(check_disk,..etc)

4. 最后,NRPE 把检测的结果传给主机端的check_nrpecheck_nrpe 再把结果送到Nagios状态队列中。

5. Nagios 依次读取队列中的信息,再把结果显示出来。

三、实验环境

Host Name

OS

IP

Software

Nagios-Server

CentOS release 6.3 (Final)

192.168.1.108

ApachePhpNagiosnagios-plugins

Nagios-Linux

CentOS release 5.8 (Final)

192.168.1.111

nagios-pluginsnrpe

Nagios-Windows

Windows XP

192.168.1.113

NSClient++

Server 安装了nagios软件,对监控的数据做处理,并且提供web界面查看和管理。当然也可以对本机自身的信息进行监控。

Client 安装了NRPE等客户端,根据监控机的请求执行监控,然后将结果回传给监控机。

防火墙已关闭/iptables: Firewall is not running.

SELINUX=disabled

四、实验目标

Linux下Nagios的安装与配置<< 一 >>

五、Nagios服务端安装

5.1 基础支持套件:gcc glibc glibc-common gd gd-develxinetd openssl-devel

# rpm -q gccglibc glibc-common gd gd-devel xinetd openssl-devel

如果系统中没有这些套件,使用yum 安装

# yum install -ygcc glibc glibc-common gd gd-devel xinetd openssl-devel

5.2 创建nagios用户和用户组

#useradd -s /sbin/nologin nagios

#mkdir /usr/local/nagios

#chown -R nagios.nagios /usr/local/nagios

查看nagios 目录的权限

# ll -d/usr/local/nagios/

5.3 编译安装Nagios

# wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.4.3.tar.gz

# tar zxvfnagios-3.4.3.tar.gz

# cd nagios

# ./configure --prefix=/usr/local/nagios

# make all

# make install

# makeinstall-init

# makeinstall-commandmode

# makeinstall-config

# chkconfig--add nagios

# chkconfig--level 35 nagios on

# chkconfig--list nagios

5.4 验证程序是否被正确安装

切换目录到安装路径(这里是/usr/local/nagios),看是否存在etcbinsbinsharevar 这五个目录,如果存在则可以表明程序被正确的安装到系统了。Nagios 各个目录用途说明如下:

bin

Nagios 可执行程序所在目录

etc

Nagios 配置文件所在目录

sbin

Nagios CGI 文件所在目录,也就是执行外部命令所需文件所在的目录

share

Nagios网页文件所在的目录

libexec

Nagios 外部插件所在目录

var

Nagios 日志文件、lock 等文件所在的目录

var/archives

Nagios 日志自动归档目录

var/rw

用来存放外部命令文件的目录


5.5 安装Nagios 插件

# wget http://prdownloads.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.16.tar.gz

# tar zxvfnagios-plugins-1.4.16.tar.gz

# cdnagios-plugins-1.4.16

# ./configure--prefix=/usr/local/nagios

# make&& make install

5.6 安装与配置ApachePhp

Apache Php 不是安装nagios 所必须的,但是nagios提供了web监控界面,通过web监控界面可以清晰的看到被监控主机、资源的运行状态,因此,安装一个web服务是很必要的。
需要注意的是,nagiosnagios3.1.x版本以后,配置web监控界面时需要php的支持。这里我们下载的nagios版本为nagios-3.4.3,因此在编译安装完成apache后,还需要编译php模块,这里选取的php版本为php5.4.10

a. 安装Apache

# wget http://labs.mop.com/apache-mirror//httpd/httpd-2.2.23.tar.gz

# tar zxvfhttpd-2.2.23.tar.gz

# cdhttpd-2.2.23

# ./configure--prefix=/usr/local/apache2

# make&& make install

若出现错误:

Linux下Nagios的安装与配置<< 一 >>

则在编译时入加 --with-included-apr 即可解决。

b. 安装Php

# wget http://cn2.php.net/distributions/php-5.4.10.tar.gz

# tar zxvfphp-5.4.10.tar.gz

# cd php-5.4.10

# ./configure--prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs

安装php时的报错

checking libxml2install dir... no
checking for xml2-config path...
configure: error: xml2-config not found. Please check your libxml2 installation

检查是否安装了libxm

[root@XKWB3403php-5.3.8]# rpm -qa |grep libxml2
libxml2-2.6.26-2.1.12
libxml2-python-2.6.26-2.1.12

重新安装libxml2libxml2-devel

yum install libxml2

yum install -ylibxml2-devel

安装完之后查找xml2-config文件是否存在

[root@XKWB3403php-5.3.8]# find / -name "xml2-config"
/usr/bin/xml2-config

如果存在的话重新安装php

[root@XKWB3403php-5.3.8]# ./configure

安装成功的标志是Linux下Nagios的安装与配置<< 一 >>之后再进行编译

make &&make install

# make&& make install

c. 配置apache
找到apache 的配置文件/usr/local/apache2/conf/httpd.conf
找到:

Userdaemon

Groupdaemon

修改为

Usernagios

Groupnagios

然后找到

<IfModule dir_module>

DirectoryIndex index.html

</IfModule>

修改为接着增加如下内容: AddTypeapplication/x-httpd-php .php ,注意httpd-PHP后面空格。

<IfModule dir_module>

DirectoryIndexindex.html index.php

AddTypeapplication/x-httpd-php .php

</IfModule>

为了安全起见,一般情况下要让nagios web 监控页面必须经过授权才能访问,这需要增加验证配置,即在httpd.conf 文件最后添加如下信息:


#settingfor nagios

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

<Directory "/usr/local/nagios/sbin">

AuthType Basic

Options ExecCGI

AllowOverride None

Order allow,deny

Allow from all

AuthName "Nagios Access"

AuthUserFile/usr/local/nagios/etc/htpasswd //用于此目录访问身份验证的文件

Require valid-user

</Directory>

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

<Directory "/usr/local/nagios/share">

AuthType Basic

Options None

AllowOverride None

Order allow,deny

Allow from all

AuthName "nagios Access"

AuthUserFile/usr/local/nagios/etc/htpasswd

Require valid-user

</Directory>


d. 创建apache目录验证文件

在上面的配置中,指定了目录验证文件htpasswd,下面要创建这个文件:

#/usr/local/apache2/bin/htpasswd -c /usr/local/nagios/etc/htpasswd david


这样就在/usr/local/nagios/etc目录下创建了一个htpasswd 验证文件,当通过http://192.168.1.108/nagios/访问时就需要输入用户名(david)和密码(刚设置的密码)了。

e. 查看认证文件的内容

# cat/usr/local/nagios/etc/htpasswd

f. 启动apache 服务

#/usr/local/apache2/bin/apachectl start

到这里nagios 的安装也就基本完成了,你可以通过web来访问了。

Linux下Nagios的安装与配置<< 一 >>

Linux下Nagios的安装与配置<< 一 >>

六、配置Nagios

Nagios 主要用于监控一台或者多台本地主机及远程的各种信息,包括本机资源及对外的服务等。默认的Nagios 配置没有任何监控内容,仅是一些模板文件。若要让Nagios 提供服务,就必须修改配置文件,增加要监控的主机和服务,下面将详细介绍。

6.1 默认配置文件介绍

Nagios 安装完毕后,默认的配置文件在/usr/local/nagios/etc目录下。

每个文件或目录含义如下表所示:




文件名或目录名

用途

cgi.cfg

控制CGI访问的配置文件

nagios.cfg

Nagios 主配置文件

resource.cfg

变量定义文件,又称为资源文件,在些文件中定义变量,以便由其他配置文件引用,如$USER1$

objects

objects 是一个目录,在此目录下有很多配置文件模板,用于定义Nagios 对象

objects/commands.cfg

命令定义配置文件,其中定义的命令可以被其他配置文件引用

objects/contacts.cfg

定义联系人和联系人组的配置文件

objects/localhost.cfg

定义监控本地主机的配置文件

objects/printer.cfg

定义监控打印机的一个配置文件模板,默认没有启用此文件

objects/switch.cfg

定义监控路由器的一个配置文件模板,默认没有启用此文件

objects/templates.cfg

定义主机和服务的一个模板配置文件,可以在其他配置文件中引用

objects/timeperiods.cfg

定义Nagios 监控时间段的配置文件

objects/windows.cfg

监控Windows 主机的一个配置文件模板,默认没有启用此文件


6.2 配置文件之间的关系

nagios的配置过程中涉及到的几个定义有:主机、主机组,服务、服务组,联系人、联系人组,监控时间,监控命令等,从这些定义可以看出,nagios各个配置文件之间是互为关联,彼此引用的。

成功配置出一台nagios监控系统,必须要弄清楚每个配置文件之间依赖与被依赖的关系,最重要的有四点:

第一:定义监控哪些主机、主机组、服务和服务组;
第二:定义这个监控要用什么命令实现;
第三:定义监控的时间段;
第四:定义主机或服务出现问题时要通知的联系人和联系人组。

6.3 配置Nagios

首先新建一个目录,名称为:servers ,把objects下面的文件拷贝一份至servers下面(本实验不监控switchprinter,故printer.cfg,switch.cfg这两个文件不用拷贝)

为了能更清楚的说明问题,同时也为了维护方便,建议将nagios各个定义对象创建独立的配置文件:

·创建hosts.cfg文件来定义主机和主机组

·创建services.cfg文件来定义服务

·用默认的contacts.cfg文件来定义联系人和联系人组

·用默认的commands.cfg文件来定义命令

·用默认的timeperiods.cfg来定义监控时间段

·用默认的templates.cfg文件作为资源引用文件

a. templates.cfg文件

nagios主要用于监控主机资源以及服务,在nagios配置中称为对象,为了不必重复定义一些监控对象,Nagios引入了一个模板配置文件,将一些共性的属性定义成模板,以便于多次引用。这就是templates.cfg的作用。

下面详细介绍下templates.cfg文件中每个参数的含义:

###############################################################################

# TEMPLATES.CFG - SAMPLE OBJECT TEMPLATES

#

# Last Modified: 10-03-2007

#

# NOTES: This config file provides you withsome example object definition

# templates that are refered by other host, service, contact, etc.

# definitions in other config files.

#

# You don't need to keep these definitions in a separate file from your

# other object definitions. Thishas been done just to make things

# easier to understand.

#

###################################################################

#

# CONTACT TEMPLATES

#

###############################################################################

###############################################################################


# Generic contact definition template - Thisis NOT a real contact, just a template!


define contact{

name generic-contact ; The nameof this contact template

service_notification_period 24x7 ; service notifications can be sent anytime

host_notification_period 24x7 ; hostnotifications can be sent anytime

service_notification_options w,u,c,r,f,s ; send notifications for all service states,flapping events, and scheduled downtime events

host_notification_options d,u,r,f,s ; sendnotifications for all host states, flapping events, and scheduled downtimeevents

service_notification_commands notify-service-by-email ; send service notifications via email

host_notification_commands notify-host-by-email ; sendhost notifications via email

register 0 ; DONTREGISTER THIS DEFINITION - ITS NOT A REAL CONTACT, JUST A TEMPLATE!

}


###############################################################################

#

# HOST TEMPLATES

#

###############################################################################


# Generic host definition template - This isNOT a real host, just a template!


define host{

name generic-host ; The name of thishost template

notifications_enabled 1 ; Hostnotifications are enabled

event_handler_enabled 1 ; Host eventhandler is enabled

flap_detection_enabled 1 ; Flap detectionis enabled

failure_prediction_enabled 1 ; Failureprediction is enabled

process_perf_data 1 ; Processperformance data

retain_status_information 1 ; Retain statusinformation across program restarts

retain_nonstatus_information 1 ; Retain non-statusinformation across program restarts

notification_period 24x7 ; Send host notificationsat any time

register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT AREAL HOST, JUST A TEMPLATE!

}



# Linux host definition template - This isNOT a real host, just a template!


define host{

name linux-server ; The name of thishost template

use generic-host ; This templateinherits other values from the generic-host template

check_period 24x7 ; By default, Linux hosts are checked roundthe clock

check_interval 5 ; Actively checkthe host every 5 minutes

retry_interval 1 ; Schedule hostcheck retries at 1 minute intervals

max_check_attempts 10 ; Check each Linuxhost 10 times (max)

check_command check-host-alive ; Default command to check Linux hosts

notification_period workhours ; Linux adminshate to be woken up, so we only notify during the day

; Note that the notification_period variable is being overridden from

; the value that is inherited from the generic-host template!

notification_interval 120 ; Resendnotifications every 2 hours

notification_options d,u,r ; Only sendnotifications for specific host states

contact_groups linux contact ; Notifications get sent to the admins bydefault

register 0 ; DONT REGISTERTHIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!

}


# Windows host definition template - This isNOT a real host, just a template!


define host{

name windows-server ; The name of thishost template

use generic-host ; Inherit defaultvalues from the generic-host template

check_period 24x7 ; By default, Windows servers aremonitored round the clock

check_interval 5 ; Actively check the serverevery 5 minutes

retry_interval 1 ; Schedule host check retries at1 minute intervals

max_check_attempts 10 ; Check each server 10 times(max)

check_command check-host-alive ; Defaultcommand to check if servers are "alive"

notification_period 24x7 ; Send notification out at any time- day or night

notification_interval 30 ; Resend notifications every 30minutes

notification_options d,r ; Only send notifications forspecific host states

contact_groups windowscontact ; Notifications get sent to the admins by default

hostgroups windows-servers ; Host groups that Windows servers should be a member of

register 0 ; DONT REGISTER THIS - ITS JUSTA TEMPLATE

}


# We define a generic printer template thatcan be used for most printers we monitor


define host{

name generic-printer ; The name of this host template

use generic-host ; Inherit defaultvalues from the generic-host template

check_period 24x7 ; By default, printers aremonitored round the clock

check_interval 5 ; Actively check the printerevery 5 minutes

retry_interval 1 ; Schedule host check retries at1 minute intervals

max_check_attempts 10 ; Check each printer 10 times(max)

check_command check-host-alive ; Default command to check if printersare "alive"

notification_period workhours ; Printersare only used during the workday

notification_interval 30 ; Resend notifications every 30minutes

notification_options d,r ; Only send notifications forspecific host states

contact_groups allcontact ; Notifications get sent tothe admins by default

register 0 ; DONT REGISTER THIS - ITS JUSTA TEMPLATE

}



# Define a template for switches that we canreuse

definehost{

name generic-switch ; The name of thishost template

use generic-host ; Inherit default values from thegeneric-host template

check_period 24x7 ; By default, switches aremonitored round the clock

check_interval 5 ; Switches are checked every 5 minutes

retry_interval 1 ; Schedule host check retries at1 minute intervals

max_check_attempts 10 ; Check each switch 10 times(max)

check_command check-host-alive ; Defaultcommand to check if routers are "alive"

notification_period 24x7 ; Send notifications at any time

notification_interval 30 ; Resend notifications every 30minutes

notification_options d,r ; Only send notifications forspecific host states

contact_groups allcontact ; Notifications get sent tothe admins by default

register 0 ; DONT REGISTER THIS - ITS JUSTA TEMPLATE

}

###############################################################################

# SERVICE TEMPLATES

###############################################################################


# Generic service definition template - Thisis NOT a real service, just a template!


define service{

name generic-service ; The 'name' of this service template

active_checks_enabled 1 ; Active service checksare enabled

passive_checks_enabled 1 ; Passive service checks are enabled/accepted

parallelize_check 1 ; Active service checks should be parallelized(disabling this can lead to major performance problems)

obsess_over_service 1 ; We should obsess overthis service (if necessary)

check_freshness 0 ; Default is to NOT checkservice 'freshness'

notifications_enabled 1 ;Service notifications are enabled

event_handler_enabled 1 ; Service event handler is enabled

flap_detection_enabled 1 ; Flap detection is enabled

failure_prediction_enabled 1 ; Failureprediction is enabled

process_perf_data 1 ; Process performance data

retain_status_information 1 ; Retain status information across programrestarts

retain_nonstatus_information 1 ; Retain non-status informationacross program restarts

is_volatile 0 ; The service is not volatile

check_period 24x7 ; The service can be checked at anytime of the day

max_check_attempts 3 ; Re-checkthe service up to 3 times in order to determine its final (hard) state

normal_check_interval 10 ; Checkthe service every 10 minutes under normal conditions

retry_check_interval 2 ; Re-checkthe service every two minutes until a hard state can be determined

contact_groups all contact ; Notifications get sent out to everyonein the 'admins' group

notification_options w,u,c,r ; Sendnotifications about warning, unknown, critical, and recovery events

notification_interval 60 ; Re-notify about serviceproblems every hour

notification_period 24x7 ;Notifications can be sent out at any time

register 0 ; DONTREGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE!

}



# Local service definition template - This isNOT a real service, just a template!


define service{

name local-service ; The name of this service template

use generic-service ; Inheritdefault values from the generic-service definition

max_check_attempts 4 ; Re-check the service up to 4 timesin order to determine its final (hard) state

normal_check_interval 5 ; Checkthe service every 5 minutes under normal conditions

retry_check_interval 1 ; Re-check the serviceevery minute until a hard state can be determined

register 0 ; DONTREGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE!

}


b. resource.cfg文件

resource.cfgnagios的变量定义文件,文件内容只有一行:

$USER1$=/usr/local/nagios/libexec

其中,变量$USER1$指定了安装nagios插件的路径,如果把插件安装在了其它路径,只需在这里进行修改即可。需要注意的是,变量必须先定义,然后才能在其它配置文件中进行引用。

c. commands.cfg文件

此文件默认是存在的,无需修改即可使用,当然如果有新的命令需要加入时,在此文件进行添加即可。


#notify-host-by-email命令的定义
define command{

command_name notify-host-by-email #命令名称,即定义了一个主机异常时发送邮件的命令。

command_line /usr/bin/printf "%b" "*****Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState:$HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time:$LONGDATETIME$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert:$HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ #命令具体的执行方式。

}

#notify-service-by-email命令的定义
define command{

command_name notify-service-by-email #命令名称,即定义了一个服务异常时发送邮件的命令

command_line /usr/bin/printf "%b" "*****Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService:$SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState:$SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditionalInfo:\n\n$SERVICEOUTPUT$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **"$CONTACTEMAIL$

}
#check-host-alive
命令的定义

definecommand{

command_name check-host-alive #命令名称,用来检测主机状态。

command_line $USER1$/check_ping -H $HOSTADDRESS$ -w3000.0,80% -c 5000.0,100% -p 5
#
这里的变量$USER1$resource.cfg文件中进行定义,即$USER1$=/usr/local/nagios/libexec;
#
那么check_ping的完整路径为/usr/local/nagios/libexec/check_ping;
# “-w 3000.0,80%”
“-w”说明后面的一对值对应的是“WARNING”状态,“80%”是其临界值。
#“-c 5000.0,100%”
“-c”说明后面的一对值对应的是“CRITICAL”“100%”是其临界值。
# “-p 1”
说明每次探测发送一个包。
}

definecommand{

command_name check_local_disk

command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p$ARG3$ #$ARG1$是指在调用这个命令的时候,命令后面的第一个参数。

}

definecommand{

command_name check_local_load

command_line $USER1$/check_load -w $ARG1$ -c $ARG2$

}

definecommand{

command_name check_local_procs

command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s$ARG3$

}

definecommand{

command_name check_local_users

command_line $USER1$/check_users -w $ARG1$ -c $ARG2$

}

definecommand{

command_name check_local_swap

command_line $USER1$/check_swap -w $ARG1$ -c $ARG2$

}

definecommand{

command_name check_ftp

command_line $USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$

}

definecommand{

command_name check_http

command_line $USER1$/check_http -I $HOSTADDRESS$ $ARG1$

}

definecommand{

command_name check_ssh

command_line $USER1$/check_ssh $ARG1$ $HOSTADDRESS$

}

definecommand{

command_name check_ping

command_line $USER1$/check_ping -H $HOSTADDRESS$ -w$ARG1$ -c $ARG2$ -p 5

}

definecommand{

command_name check_nt

command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 12489-v $ARG1$ $ARG2$

}


d. hosts.cfghostgroups.cfg文件

以上文件默认不存在,需要手动创建,hosts.cfg主要用来指定被监控的主机地址以及相关属性信息,hostgroups主要用来定义群组,如果需增加被监控主机,只需在此文件中增加即可,根据实验目标配置如下:

define host{

host_name Nagios-Linux

alias CentOSreleae 5.8(Final)

address 192.168.1.111

contact_groups linuxcontact

check_command check-host-alive

max_check_attempts 3

normal_check_interval 1

notification_period 24x7

notification_options d,u,r

}


define host{

host_name Nagios-Windows

alias Windows XP

address 192.168.1.113

contact_groups windowscontact

check_command check-host-alive

max_check_attempts 3

normal_check_interval 1

notification_period 24x7

notification_options d,u,r

}

hostgroups.cfg文件配置如下:如果增加其他主机,只需在此文件中的membersr后面增加 hosts.cfg文件中定义的主机名称,并使用“,”隔开

define hostgroup{

hostgroup_name linux servers

alias Linux Servers

members Nagios-Linux

}

define hostgroup{

hostgroup_name windows servers

alias Windows Servers

members Nagios-Windows

}

define hostgroup{

hostgroup_name other servers

alias Linux and WindowsServers

members Nagios-Windows, Nagios-Linux

}

注意:/usr/local/nagios/etc/objects 下默认有localhost.cfg windows.cfg 这两个配置文件,localhost.cfg 文件是定义监控主机本身的,windows.cfg 文件是定义windows 主机的,其中包括了对host 和相关services 的定义。所以在本次实验中,将直接在localhost.cfg 中定义监控主机(Nagios-Server),在windows.cfg中定义windows 主机(Nagios-Windows)。根据自己的需要修改其中的相关配置,详细如下:


篇幅有限,还有<< 二 >>


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI