6、安装Nagios 插件
① # tar zxvf nagios-plugins-1.4.16.tar.gz -C /usr/local/nagios/ //解压缩
② # cdnagios-plugins-1.4.16
③ # ./configure--prefix=/usr/local/nagios //配置
④ # make &&make install //编译并且安装
7、安装与配置Apache和Php
Apache和Php不是安装nagios 所必须的,但是nagios提供了web监控界面,通过web监控界面可以清晰的看到被监控主机、资源的运行状态,因此,安装一个web服务是很必要的。
安装Apache和Php可以使用RedHat EnterpriseLinux 5.4自带的rpm包来安装,也可以使用源码来进行安装。需要注意的是,nagios在nagios3.1.x版本以后,配置web监控界面时需要php的支持。我下载的nagios版本为nagios-4.0.0,因此在编译安装完成apache后,还需要编译php模块。关于源码搭建lamp环境可以参考本人的相关博客,这里使用的是rpm包来进行说明。
7.1、安装
①# yum install httpd php //使用本地yum来安装httpd和php
② 配置apache
编辑apache 的配置文件/etc/httpd/conf/httpd.conf
Userapache 修改为 User nagios
Groupapache 修改为 Group nagios
2、配置文件之间的关系
在nagios的配置过程中涉及到的几个定义有:主机、主机组,服务、服务组,联系人、联系人组,监控时间,监控命令等。成功配置出一台nagios监控系统,必须要弄清楚每个配置文件之间依赖与被依赖的关系,最重要的有四点:
第一:定义监控哪些主机、主机组、服务和服务组;
第二:定义这个监控要用什么命令实现;
第三:定义监控的时间段;
第四:定义主机或服务出现问题时要通知的联系人和联系人组。
3、配置Nagios
为了能更清楚的说明问题,同时也为了维护方便,建议将nagios各个定义对象创建独立的配置文件:
·创建hosts.cfg文件来定义主机和主机组
·创建services.cfg文件来定义服务
·用默认的contacts.cfg文件来定义联系人和联系人组
·用默认的commands.cfg文件来定义命令
·用默认的timeperiods.cfg来定义监控时间段
·用默认的templates.cfg文件作为资源引用文件
① templates.cfg文件
nagios主要用于监控主机资源以及服务,在nagios配置中称为对象,为了不必重复定义一些监控对象,Nagios引入了一个模板配置文件,将一些共性的属性定义成模板,以便于多次引用。这就是templates.cfg的作用。
下面介绍一下templates.cfg文件中每个参数的含义:
define contact{
name generic-contact ;
//联系人名称
service_notification_period 24x7 ;
//当服务出现异常时,发送通知的时间段,这个时间段"24x7"在timeperiods.cfg文件中定义
host_notification_period 24x7 ;
//当主机出现异常时,发送通知的时间段,这个时间段"24x7"在timeperiods.cfg文件中定义
service_notification_options w,u,c,r ;
//这个定义的是“通知可以被发出的情况”。w即warn,表示警告状态,u即unknown,表示不明状态;
c即criticle,表示紧急状态,r即recover,表示恢复状态;也就是在服务出现警告状态、未知状态、紧急状态和重新恢复状态时都发送通知给使用者。
host_notification_options d,u,r ;
//定义主机在什么状态下需要发送通知给使用者,d即down,表示宕机状态;u即unreachable,表示不可到达状态,r即recovery,表示重新恢复状态。
service_notification_commands notify-service-by-email ;
//服务故障时,发送通知的方式,可以是邮件和短信,这里发送的方式是邮件; 其中“notify-service-by-email”在commands.cfg文件中定义。
host_notification_commands notify-host-by-email ;
//主机故障时,发送通知的方式,可以是邮件和短信,这里发送的方式是邮件;其中“notify-host-by-email”在commands.cfg文件中定义。
register 0 ; DONT REGISTER THISDEFINITION - ITS NOT A REAL CONTACT, JUST A TEMPLATE!
}
define host{
name generic-host ;
//主机名称,这里的主机名,并不是直接对应到真正机器的主机名;是对应到在主机配置文件里所设定的主机名。
notifications_enabled 1 ; Host notifications are enabled
event_handler_enabled 1 ; Host event handler is enabled
flap_detection_enabled 1 ; Flap detection is enabled
failure_prediction_enabled 1 ; Failure prediction is enabled
process_perf_data 1 ;
//其值可以为0或1,其作用为是否启用Nagios的数据输出功能; 如果将此项赋值为1,那么Nagios就会将收集的数据写入某个文件中,以备提取。
retain_status_information 1 ; Retain status informationacross program restarts
retain_nonstatus_information 1 ; Retain non-status informationacross program restarts
notification_period 24x7 ;
// 指定“发送通知”的时间段,也就是可以在什么时候发送通知给使用者。
register 0 ; DONT REGISTER THIS DEFINITION- ITS NOT A REAL HOST, JUST A TEMPLATE!
}
define service{
name generic-service ;
//定义一个服务名称
active_checks_enabled 1 ; Active service checksare enabled
passive_checks_enabled 1 ; Passive service checksare enabled/accepted
parallelize_check 1 ; Active service checksshould be parallelized;
; (disabling this can lead to major performance problems)
obsess_over_service 1 ; We should obsess over this service (ifnecessary)
check_freshness 0 ; Default is to NOTcheck service 'freshness'
notifications_enabled 1 ; Service notifications areenabled
event_handler_enabled 1 ; Service event handleris enabled
flap_detection_enabled 1 ; Flap detection isenabled
failure_prediction_enabled 1 ; Failure prediction is enabled
process_perf_data 1 ; Process performancedata
retain_status_information 1 ; Retain statusinformation across program restarts
retain_nonstatus_information 1 ; Retain non-statusinformation across program restarts
is_volatile 0 ; The service is notvolatile
②resource.cfg文件
resource.cfg是nagios的变量定义文件,文件内容只有一行:
$USER1$=/usr/local/nagios/libexec
其中,变量$USER1$指定了安装nagios插件的路径,如果把插件安装在了其它路径,只需在这里进行修改即可。需要注意的是,变量必须先定义,然后才能在其它配置文件中进行引用。
③ 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$ #命令具体的执行方式。
}
注意:在/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)。根据自己的需要修改其中的相关配置,
localhost.cfg详细如下:
define host{
use linux-server ; Name of host template to use
; This host definition will inherit all variables that are defined
; in (or inherited by) the linux-server host template definition.
host_name Nagios-Server
alias Nagios-Server
address 127.0.0.1
}
define hostgroup{
hostgroup_name linux-servers ;The name of the hostgroup
alias Linux Servers ; Long name of thegroup
members Nagios-Server ; Comma separated listof hosts that belong to this group
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description PING
check_command check_ping!100.0,20%!500.0,60%
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description Root Partition
check_command check_local_disk!20%!10%!/
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description Current Users
check_command check_local_users!20!50
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description Total Processes
check_command check_local_procs!250!400!RSZDT
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description Current Load
check_command check_local_load!5.0,4.0,3.0!10.0,6.0,4.0
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description Swap Usage
check_command check_local_swap!20!10
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description SSH
check_command check_ssh
notifications_enabled 0
}
define service{
use local-service ; Name of service template to use
host_name Nagios-Server
service_description HTTP
check_command check_http
notifications_enabled 0
}
windows.cfg
define host{
use windows-server ; Inherit default values from a template
host_name Nagios-Windows ; The name we're giving to this host
alias My Windows Server ; A longer name associated with the host
address 192.168.1.113 ; IP address of the host
}
define hostgroup{
hostgroup_name windows-servers ;The name of the hostgroup
alias Windows Servers ; Long name of thegroup
}
define service{
use generic-service
host_name Nagios-Windows
service_description NSClient++Version
check_command check_nt!CLIENTVERSION
}
define service{
use generic-service
host_name Nagios-Windows
service_description Uptime
check_command check_nt!UPTIME
}
define service{
use generic-service
host_name Nagios-Windows
service_description CPU Load
check_command check_nt!CPULOAD!-l 5,80,90
}
define service{
use generic-service
host_name Nagios-Windows
service_description MemoryUsage
check_command check_nt!MEMUSE!-w 80 -c 90
}
define service{
use generic-service
host_name Nagios-Windows
service_description C:\ DriveSpace
check_command check_nt!USEDDISKSPACE!-l c -w 80 -c 90
}
define service{
use generic-service
host_name Nagios-Windows
service_description W3SVC
check_command check_nt!SERVICESTATE!-d SHOWALL -l W3SVC
}
define service{
use generic-service
host_name Nagios-Windows
service_description Explorer
check_command check_nt!PROCSTATE!-d SHOWALL -l Explorer.exe
}
⑤services.cfg文件
此文件默认也不存在,需要手动创建,services.cfg文件主要用于定义监控的服务和主机资源,例如监控http服务、ftp服务、主机磁盘空间、主机系统负载等等。Nagios-Server 和Nagios-Windows 相关服务已在相应的配置文件中定义,所以这里只需要定义Nagios-Linux 相关服务即可,这里只定义一个检测是否存活的服务来验证配置文件的正确性,其他服务的定义将在后面讲到。
====================================================================
define service{
use local-service
#引用local-service服务的属性值,local-service在templates.cfg文件中进行了定义。
host_name Nagios-Linux
#指定要监控哪个主机上的服务,“Nagios-Server”在hosts.cfg文件中进行了定义。
service_description check-host-alive
#对监控服务内容的描述,以供维护人员参考。
check_command check-host-alive #指定检查的命令。
}
⑥contacts.cfg文件
contacts.cfg是一个定义联系人和联系人组的配置文件,当监控的主机或者服务出现故障,nagios会通过指定的通知方式(邮件或者短信)将信息发给这里指定的联系人或者使用者。
=====================================================================
define contact{
contact_name wangjun
#联系人的名称,这个地方不要有空格
usegeneric-contact
#引用generic-contact的属性信息,其中“generic-contact”在templates.cfg文件中进行定义
alias Nagios Admin
email wangjun@163.com
}
define contactgroup{
contactgroup_name ts
#联系人组的名称,同样不能空格
alias Technical Support #联系人组描述
members wangjun
#联系人组成员,其中“david”就是上面定义的联系人,如果有多个联系人则以逗号相隔
}
⑦ timeperiods.cfg文件
此文件只要用于定义监控的时间段,下面是一个配置好的实例:
#下面是定义一个名为24x7的时间段,即监控所有时间段
===============================================================================
definetimeperiod{
timeperiod_name 24x7 #时间段的名称,这个地方不要有空格
alias 24 Hours A Day, 7 Days A Week
sunday 00:00-24:00
monday 00:00-24:00
tuesday 00:00-24:00
wednesday 00:00-24:00
thursday 00:00-24:00
friday 00:00-24:00
saturday 00:00-24:00
}
#下面是定义一个名为workhours的时间段,即工作时间段。
===============================================================================
definetimeperiod{
timeperiod_name workhours
alias NormalWork Hours
monday 09:00-17:00
tuesday 09:00-17:00
wednesday 09:00-17:00
thursday 09:00-17:00
friday 09:00-17:00
}
⑧ cgi.cfg文件
此文件用来控制相关cgi脚本,如果想在nagios的web监控界面执行cgi脚本,例如重启nagios进程、关闭nagios通知、停止nagios主机检测等,这时就需要配置cgi.cfg文件了。
由于nagios的web监控界面验证用户为wangjun,所以只需在cgi.cfg文件中添加此用户的执行权限就可以了,需要修改的配置信息如下:
default_user_name=wangjun
authorized_for_system_information=nagiosadmin,wangjun
authorized_for_configuration_information=nagiosadmin,wangjun
authorized_for_system_commands=wangjun
authorized_for_all_services=nagiosadmin,wangjun
authorized_for_all_hosts=nagiosadmin,wangjun
authorized_for_all_service_commands=nagiosadmin,wangjun
authorized_for_all_host_commands=nagiosadmin,wangjun
Nagios提供的这个验证功能非常有用,在错误信息中通常会打印出错误的配置文件以及文件中的哪一行,这使得nagios的配置变得非常容易,报警信息通常是可以忽略的,因为一般那些只是建议性的。
看到上面这些信息就说明没问题了,然后启动Nagios 服务。 七、Nagios的启动与停止
1 启动Nagios
① 通过初始化脚本启动nagios
#/etc/init.d/nagios start
or
# service nagios start
② 手工方式启动nagios
通过nagios命令的“-d”参数来启动nagios守护进程:
#/usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
2、重启Nagios
当修改了配置文件让其生效时,需要重启/重载Nagios服务。
① 通过初始化脚本来重启nagios
# /etc/init.d/nagios restart
或者
# service nagios restart
② 通过web监控页重启nagios
可以通过web监控页的"Process Info" ->"Restart the Nagiosprocess"来重启nagios
3、停止Nagios
① 通过初始化脚本关闭nagios服务
#/etc/init.d/nagios stop
或者
# service nagios stop
② 通过web监控页停止nagios
可以通过web监控页的"Process Info" ->"Shutdown the Nagiosprocess"来停止nagios
4、重新加载Nagios配置文件
#/etc/init.d/nagios reload
八、查看初步配置情况
1、启动完成之后,登录Nagios Web监控页http://192.168.30.100/nagios/查看相关信息。
2、 点击左面的Current Status ->Hosts 可以看到所定义的三台主机的情况。