基于的软件版本
Apache-2.0.63 php-5.3.2 nagios-3.2.3 nagios-plugins-1.4.15 rrdtool-1.4.5 nrpe-2.12
pnp4nagios-0.4.13 check_mysql_health
服务器端
1、安装前准备
(1)创建nagios用户和用户组
[root@localhost ~]#useradd -s /sbin/nologin nagios
[root@localhost ~]#mkdir /usr/local/nagios
[root@localhost ~]# chown –R nagios.nagios/usr/local/nagios
(2)开启系统sendmail服务 (自行选择)
在nagios监控服务器上开启sendmail服务的主要作用是让nagios在检测到故障时可以发送报警邮件,目前几乎所有的linux发行版本都默认自带了sendmail服务,所以,在安装系统时只需开启sendmail服务即可,并且不需要在sendmail上做任何配置。
2、编译安装Nagios
[root@localhost ~]# tar -zxvf nagios-3.2.3.tar.gz
[root@localhost ~]# cd nagios-3.2.3
[root@localhost nagios-3.2.3]#./configure --prefix=/usr/local/nagios
#指定nagios的安装目录,这里指定nagios安装到/usr/local/nagios目录
[root@localhost nagios-3.2.3]#make all
[root@localhost nagios-3.2.3]#make install
# make install用来安装nagios的主程序,CGI和HTML文件
[root@localhost nagios-3.2.3]# make install-init
#通过make install-init命令可以在/etc/rc.d/init.d目录下创建nagios启动脚本
[root@localhost nagios-3.2.3]# make install-commandmode
#通过make install-commandmode命令来配置目录权限
[root@localhost nagios-3.2.3]# make install-config
#make install-cofig命令用来安装nagios示例配置文件,这里安装的路径是/usr/local/nagios/etc
3、Nagios目录介绍
目录对应的功能说明如下:
bin:可执行程序所在目录
etc:配置文件所在目录
sbin:cgi文件所在目录,也就是执行外部命令所需文件所在目录
share:网页文件所在目录
libexec:外部插件所在目录
var:日志文件,lock等文件所在目录
var/archives:日志自动归档目录
var/rw:用来存放外部命令文件的目录
4、 安装Nagios插件
这里下载的版本是nagios-plugins-1.4.15。
注意:插件版本与nagios版本的关联并不大。
[root@localhost nagios]#tar –zxvf nagios-plugins-1.4.15.tar.gz
[root@localhost nagios]#cd nagios-plugins-1.4.15
[root@localhost nagios-plugins-1.4.15]#./configure --prefix=/usr/local/nagios
[root@localhost nagios-plugins-1.4.15]# make
[root@localhost nagios-plugins-1.4.15]# make install
安装完成,在/usr/local/nagios下的libexec目录下,生成很多可执行文件,这些正是nagios所需要的插件。
5、安装与配置apache和php
apache和php不是安装nagios所必须的,但是nagios提供了web监控界面,通过web监控界面可以清晰的看到被监控主机、资源的运行状态,因此,安装一个web服务是很必要的。
需要注意的是,nagios在nagios3.1.x版本以后,配置web监控界面时需要php的支持。这里我们下载的nagios版本为nagios-3.2.3,因此在编译安装完成apache后,还需要编译php模块,这里选取的php版本为php5.3.2。
(1)安装apache与php
首先安装apache,步骤如下:
[root@nagiosserver ~]# tar zxvf httpd-2.0.63.tar.gz
[root@nagiosserver ~]#cd httpd-2.0.63
注意:在64位机器上安装需要加参数--witn-expat=bulitin,否则make时会报错 /usr/lib/libexpat.so: could not read symbols: File in wrong format collect2: ld returned 1 exit status。在32位机器上直接./configure --prefix=/usr/local/apache2 就可以
[root@nagiosserver ~]#./configure --prefix=/usr/local/apache2 --enable-modules=so--enable-rewrite --with-expat=builtin
[root@nagiosserver ~]#make
[root@nagiosserver ~]#make install
接着安装php,步骤如下:
[root@nagiosserver ~]# tar zxvf php-5.3.2.tar.gz
[root@nagiosserver ~]#cd php-5.3.2
注意php的编译参数,如果需要pnp图表显示,请看pnp安装时的注意事项,编译参数不能用下面的;如果不用pnp图表直接用下面的就可以
(./configure --prefix=/usr/local/php--with-apxs2=/usr/local/apache2/bin/apxs --with-zlib-dir=/usr/include/zlib.h--with-gd)
[root@nagiosserver~]#./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs
在64位系统上编译php 如果如果出现如下错误
configure: error: libjpeg.(a|so) not found
解决方法:
来源 https://bugs.php.net/bug.php?id=33685
解决方式:
# ln -s /usr/lib64/libjpeg.so /usr/lib/
# ln -s /usr/lib64/libpng.so /usr/lib/
然后继续编绎安装即可!
[root@nagiosserver ~]#make
[root@nagiosserver ~]#make install
从安装步骤可知,apache安装路径为/usr/local/apache2,而php安装路径为/usr/local/php。
(2)配置apache(apache版本不同,修改可能会不同)
找到apache配置文件/usr/local/apache2/conf/httpd.conf
找到:
User nobody
Group #-1
修改为
User nagios
Group nagios
然后找到
DirectoryIndex index.html index.html.var
修改为
DirectoryIndex index.html index.php
接着增加如下内容:注意下面的 .php,前面有空格
AddType application/x-httpd-php .php
为了安全其间,一般情况下要让nagios的web监控界面必须经过授权才能访问,这需要增加验证配置,即在httpd.conf文件最后添加如下信息:
#setting for 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>
(3)创建apache目录验证文件
在上面的配置中,指定了目录验证文件htpasswd,下面要创建这个文件:
[root@localhost nagios]#/usr/local/apache2/bin/htpasswd -c/usr/local/nagios/etc/htpasswd nagios
New password: (输入密码)
Re-type new password: (再输入一次密码)
Adding password for user ixdba
这样就在/usr/local/nagios/etc目录下创建了一个htpasswd验证文件,当通过http://ip/nagios/访问时就需要输入用户名和密码了。
最后,启动服务:
[root@ nagiosserver ~]#/usr/local/apache2/bin/apachectl start
启动服务可能会出现如下错误:
httpd: Could notdetermine the server's fully qualified domain name, using 127.0.0.1 forServerName
解决很简单 在httpd.conf里有一段 #ServerName www.example.com:80去掉#号就可以
一、nagios配置过程详解
1、nagios默认配置文件介绍
nagios安装完毕后,默认的配置文件在/usr/local/nagios/etc目录下
2、配置文件之间的关系
在nagios的配置过程中涉及到的几个定义有:主机、主机组,服务、服务组,联系人、联系人组,监控时间,监控命令等,从这些定义可以看出,nagios各个配置文件之间是互为关联,彼此引用的。
成功配置出一台nagios监控系统,必须要弄清楚每个配置文件之间依赖与被依赖的关系,最重要的有四点:
第一:定义监控哪些主机、主机组、服务和服务组
第二:定义这个监控要用什么命令实现,
第三:定义监控的时间段,
第四:定义主机或服务出现问题时要通知的联系人和联系人组。
3、开始配置nagios
为了能更清楚的说明问题,同时也为了维护方便,建议将nagios各个定义对象创建独立的配置文件:
即为:
创建hosts.cfg文件来定义主机和主机组
创建services.cfg文件来定义服务
用默认的contacts.cfg文件来定义联系人和联系人组
用默认的commands.cfg文件来定义命令
用默认的timeperiods.cfg来定义监控时间段
用默认的templates.cfg文件作为资源引用文件
(1)templates.cfg文件
nagios主要用于监控主机资源以及服务,在nagios配置中称为对象,为了不必重复定义一些监控对象,Nagios引入了一个模板配置文件,将一些共性的属性定义成模板,以便于多次引用。这就是templates.cfg的作用。
下面详细介绍下templates.cfg文件中每个参数的含义:
(2)resource.cfg文件
resource.cfg是nagios的变量定义文件,文件内容只有一行:
其中,变量$USER1$指定了安装nagios插件的路径,如果把插件安装在了其它路径,只需在这里进行修改即可。需要注意的是,变量必须先定义,然后才能在其它配置文件中进行引用。
(3)理解Nagios宏及其工作机制
Nagios配置非常灵活,继承和引用是一大特征,另一个重要特征就是可以在命令行的定义里使用宏,通过定义宏,nagios可以灵活的获取主机、服务和其它对象的信息。
宏的工作机制
在执行命令之前,nagios将对命令里的每个宏替换成它们应当取得的值。这种宏替换发生在Nagios执行各种类型的宏时候。例如主机和服务的检测、通知、事件处理等。
宏的分类:
默认宏、按需而成的宏、用户自定制宏等。
默认宏:
主机IP地址宏
当在命令定义中使用主机或服务宏时,宏将要执行所用的值指向主机或服务所带有值。看下面这个例子,假定在check_ping命令定义里使用了一个主机对象,例如这样:
那么执行这个主机检测命令时展开并最终执行的将是这样的:
命令参数宏
同样你可以向命令传递参数,这样可以保证命令定义更具通用性。参数指定在对象(象主机或服务)中定义,用一个“!”来分隔,例如这样:
在上例中,服务的检测命令中含有两个参数(请参考$ARGn$宏),而$ARG1$宏将是"200.0,80%",同时$ARG2$将是"400.0,40%"(都不带引号)。假定使用之前的主机定义并这样来定义你的check_ping命令:
那么对于服务的检测命令最终将是这样子的:
Nagios可用的全部的宏
主机宏
$HOSTNAME$ 主机简称(如"web"),取自于主机定义里的host_name域
$HOSTADDRESS$ 主机地址。取自于主机定义里的address域
服务宏
$SERVICESTATE$ 服务状态描述,有w,u,c
$SERVICEDESC$ 对当前服务的描述
联系人宏
$CONTACTNAME$ 表示联系人,在联系人文件中定义
通知宏
$NOTIFICATIONTYPE$ 返回下面信息:("PROBLEM","RECOVERY", "ACKNOWLEDGEMENT", "FLAPPINGSTART","FLAPPINGSTOP", "FLAPPINGDISABLED","DOWNTIMESTART", "DOWNTIMEEND", or"DOWNTIMECANCELLED").
日期/时间宏
$LONGDATETIME$ 当前的日期/时间戳
文件宏
$LOGFILE$ 日志文件的保存位置。
$MAINCONFIGFILE$ 主配置文件的保存位置。
其他宏
$ADMINEMAIL$ 全局的管理员EMail地址
$ARGn$ 指向第n个命令传递参数(通知、事件处理、服务检测等)。Nagios支持最多32个参数宏
(4)commands.cfg文件
此文件默认是存在的,无需修改即可使用,当然如果有新的命令需要加入时,在此文件进行添加即可。这里并未列出文件的所有内容,仅仅介绍了配置中用到的一些命令。
(6) services.cfg文件
此文件默认也不存在,需要手动创建,services.cfg文件主要用于定义监控的服务和主机资源,例如监控http服务、ftp服务、主机磁盘空间、主机系统负载等等。
(7) contacts.cfg文件
contacts.cfg是一个定义联系人和联系人组的配置文件,当监控的主机或者服务出现故障,nagios会通过指定的通知方式(邮件或者短信)将信息发给这里指定的联系人或者使用者。
(8)timeperiods.cfg文件
此文件只要用于定义监控的时间段,下面是一个配置好的实例:
(9) cgi.cfg文件
此文件用来控制相关cgi脚本,如果想在nagios的web监控界面执行cgi脚本,例如重启nagios进程、关闭nagios通知、停止nagios主机检测等,这时就需要配置cgi.cfg文件了。
由于nagios的web监控界面验证用户为ixdba,所以只需在cgi.cfg文件中添加此用户的执行权限就可以了,需要修改的配置信息如下:
(10) nagios.cfg文件
Nagios.cfg默认的路径为/usr/local/nagios/etc/nagios.cfg,是nagios的核心配置文件,所有的对象配置文件都必须在这个文件中进行定义才能发挥其作用,这里只需将对象配置文件在Nagios.cfg文件中进行引用即可。
1、验证Nagios配置文件的正确性
nagios在验证配置文件方面做的非常到位,只需通过一个命令即可完成:
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
Nagios提供的这个验证功能非常有用,在错误信息中通常会打印出错误的配置文件以及文件中的哪一行,这使得nagios的配置变得非常容易,报警信息通常是可以忽略的,因为一般那些只是建议性的。
2、 启动与停止nagios
(1)启动nagios
在启动nagios 前 修改/etc/passwd,文件最后nagios:x:501:501::/home/nagios:/sbin/nlogin
改为
nagios:x:501:501::/home/nagios:/bin/bash
否则报如下错误
Startingnagios:This account is currently not available.
done.
修改/etc/cgi.cfg
vi /usr/local/nagios/etc/cgi.cfg
里面有配置
use_authentication=1 #把1修改为0,保存
为了保障系统的安全性,nagios设置了这个参数,默认为1,改为0即可
通过初始化脚本启动nagios
/etc/init.d/nagios start
或者
Service nagios start
手工方式启动nagios
通过nagios命令的“-d”参数来启动nagios守护进程:
/usr/local/nagios/bin/nagios -d/usr/local/nagios/etc/nagios.cfg
(2)关闭nagios
通过初始化脚本关闭nagios服务
/etc/init.d/nagios stop
或者
Service nagios stop
通过kill方式关闭nagios
kill <nagios_pid>
2、启动与停止nagios
通过初始化脚本来重启nagios
/etc/rc.d/init.d/nagios reload
/etc/rc.d/init.d/nagios restart
4、 nagios性能分析图表
(1)nagios性能分析图表的作用
Nagios对服务或主机监控的是一个瞬时状态,有时候系统管理员如果需要了解主机在一段时间内的性能以及服务的响应状态,并且形成图表时,就需要通过查看日志数据来分析,但是这种方式不但繁琐,而且抽象,不过幸运的是,PNP可以帮助我们来完成这个工作。
(2) PNP的概念与安装环境
PNP是一个小巧的开源软件包,它基于PHP和PERL,PNP可以利用rrdtool工具将Nagios采集的数据绘制成相关的图表,然后显示主机或者服务在一段时间内的运行状况。
PNP官方网站为:http://www.pnp4nagios.org
如果要安装PNP,首先需要安装如下环境:
1:整合后的apache和PHP环境,需支持GD、zlib
不然当点击太阳小图标时,会遇到如下错误,
1 PHP zlib Support not found
安装php 时未指定zlib库,或者是未安装zlib (whereis zlib 判断是否安装了zlib)
2 PHP gd support not found
如果 gd库是rpm安装的 用参数 --with-gd
在上面安装PHP 时应该这样指定
./configure --prefix=/usr/local/php--with-apxs2=/usr/local/apache2/bin/apxs --with-zlib-dir=/usr/include/zlib.h--with-gd
如果没有性能分析图表,就不用参数 --with-zlib-dir --with-gd
2:安装rrdtool工具
3:安装perl
(3)安装PNP
RRDtool是一个图表生成工具,可以从http://www.mrtg.org/rrdtool/获得信息。
这里下载的版本是rrdtool-1.4.5.tar.gz,安装过程如下:
[root@nagios rrdtool]# tar zxvf rrdtool-1.4.5.tar.gz
[root@nagios rrdtool]# cdrrdtool-1.4.5
[root@nagios rrdtool-1.4.5]# ./configure--prefix=/usr/local/rrdtool
[root@nagios rrdtool-1.4.5]#make
[root@nagios rrdtool-1.4.5]# make install
接着安装PNP,这里下载的版本是pnp-0.4.13.tar.gz,安装过程如下:
[root@nagios pnp]#tar -xvzfpnp-0.4.13.tar.gz
[root@nagios pnp]#cd pnp-0.4.13
[root@nagios pnp-0.4.13]#./configure--with-nagios-user=nagios --with-nagios-group-nagios --with-rrdtool=/usr/local/rrdtool/bin/rrdtool --with-perfdata-dir=/usr/local/nagios/share/perfdata
[root@nagios pnp-0.4.13]#make all
[root@nagios pnp-0.4.13]#make install
[root@nagios pnp-0.4.13]#make install-config
[root@nagios pnp-0.4.13]#make install-init
安装完成,PNP默认文件放置情况如下:
General Options:
----------------------------- -------------------
Nagios user/group: nagios nagios
Install directory: /usr/local/nagios
HTML Dir: /usr/local/nagios/share/pnp
Config Dir: /usr/local/nagios/etc/pnp
Path to rrdtool: /usr/local/bin/rrdtool (Version 1.4.5)
RRDs Perl Modules: *** NOT FOUND ***
RRD Files stored in: /usr/local/nagios/share/perfdata
process_perfdata.pl Logfile: /usr/local/nagios/var/perfdata.log
Perfdata files (NPCD) stored in: /usr/local/nagios/var/spool/perfdata/
-------------------------------------------------------------------------
(4)设置PNP
① 创建默认配置文件
cd /usr/local/nagios/etc/pnp/
cp process_perfdata.cfg-sample process_perfdata.cfg
cp npcd.cfg-sample npcd.cfg
cp rra.cfg-sample rra.cfg
chown -R nagios:nagios *
② 修改process_perfdata.cfg文件
vi /usr/local/nagios/etc/pnp/process_perfdata.cfg
LOG_FILE =/usr/local/nagios/var/perfdata.log
# Loglevel 0=silent 1=normal 2=debug
LOG_LEVEL = 2
这里将日志级别改为2,即为debug模式。
(5)修改nagios配置文件
①增加小太阳标示
修改templates.cfg,增加一个定义PNP的hosts和services
define host {
name hosts-pnp
register 0
action_url/nagios/pnp/index.php?host=$HOSTNAME$
process_perf_data 1
}
define service {
name services-pnp
register 0
action_url/nagios/pnp/index.php?host=$HOSTNAME$&srv=$SERVICEDESC$
process_perf_data 1
}
②修改nagios.cfg
找到如下几项,去掉注释,修改后信息如下:
process_performance_data=1
host_perfdata_command=process-host-perfdata
service_perfdata_command=process-service-perfdata
③修改commands.cfg,把文件最后定义的注释掉,添加如下信息,用process_perfdata.pl读取host、service信息
# 'process-host-perfdata' command definition
define command{
command_name process-host-perfdata
command_line/usr/local/nagios/libexec/process_perfdata.pl
}
# 'process-service-perfdata' command definition
define command{
command_name process-service-perfdata
command_line /usr/local/nagios/libexec/process_perfdata.pl
}
④修改hosts.cfg文件和services.cfg文件
define host{
use linux-server,hosts-pnp
host_name web
alias ixdba-web
address 192.168.12.251
}
define host{
use linux-server,hosts-pnp
host_name mysql
alias ixdba-mysql
address 192.168.12.237
}
define service{
use local-service,services-pnp
host_name mysql
service_description SSH
check_command check_ssh
}
define service{
use local-service,services-pnp
host_name web
service_description http
check_command check_http
}
(5)测试PNP功能
所有配置完成之后,重新检查nagios配置文件是否正确,然后重启nagios
/etc/init.d/nagios restart
如果配置正确,此时就会生成响应主机的pnp文件
[root@nagios web]# pwd
/usr/local/nagios/share/perfdata/web
[root@gaojf web]# ls
http.rrd http.xml PING.rrd PING.xml SSHD.rrd SSHD.xml
最后打开网页:
打开网页http://IP/nagios,选择主机选项,然后点击小太阳就可以看到图表,或者访问http://ip/nagios/pnp也可以直接访问图表信息。如下图所示:
点击小太阳报错
Deprecated:Assigning the return value of new by reference is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1026
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 557
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 559
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 563
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 565
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 563
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 565
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 563
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 565
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 563
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 565
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 563
Warning: date() [function.date]:It is not safe to rely on the system's timezone settings. You are *required* touse the date.timezone setting or the date_default_timezone_set() function. Incase you used any of those methods and you are still getting this warning, youmost likely misspelled the timezone identifier. We selected 'Asia/Chongqing'for 'CST/8.0/no DST' instead in /usr/local/nagios/share/pnp/include/function.inc.phpon line 565
这是因为pnp-0.4.14对PHP 5.3.2的支持还不是很好,其中有几个bug需要修改:
根据错误提示打开
vi /usr/local/nagios/share/pnp/include/function.inc.php
根据提示找到对应行进行修改,提示1026行错误,其他是date错误 从557开始
根据报错信息 添加
line 556: 添加:date_default_timezone_set('UTC');
line 1026:修改为$pdf = new PDF('P', 'mm', 'A4'); 删除&
改完之后 重启nagios 又出现如下错误
Deprecated:Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
Deprecated: Function eregi() is deprecated in /usr/local/nagios/share/pnp/include/function.inc.phpon line 1504
提示eregi()函数有误
找到行1504附近修改为
if($level == 2 && $type == "complete" &&preg_match("/^NAGIOS_/",$tag)){
再重新重启nagios,应该就能看到图表了