一、安装前准备
(1)创建nagios用户和用户组
[[email protected] ~]#useradd -s /sbin/nologin nagios
[[email protected] ~]#mkdir /usr/local/nagios
[[email protected] ~]#chown –R nagios.nagios /usr/local/nagios
(2)开启系统sendmail服务
在nagios监控服务器上开启sendmail服务的主要作用是让nagios在检测到故障时可以发送报警邮件,目前几乎所有的linux发行版本都默认自带了sendmail服务,所以,在安装系统时只需开启sendmail服务即可,并且不需要在sendmail上做任何配置。
二、 编译安装Nagios
[[email protected] ~]# tar -zxvf nagios-3.2.0.tar.gz
[[email protected] ~]# cd nagios-3.2.0
[[email protected] nagios-3.2.0]#./configure --prefix=/usr/local/nagios
#指定nagios的安装目录,这里指定nagios安装到/usr/local/nagios目录
[[email protected] nagios-3.2.0]#make all
[[email protected] nagios-3.2.0]#make install
# make install用来安装nagios的主程序,CGI和HTML文件
[[email protected] nagios-3.2.0]# make install-init
#通过make install-init命令可以在/etc/rc.d/init.d目录下创建nagios启动脚本
[[email protected] nagios-3.2.0]# make install-commandmode
#通过make install-commandmode命令来配置目录权限
[[email protected] nagios-3.2.0]# make install-config
#make install-cofig命令用来安装nagios示例配置文件,这里安装的路径是/usr/local/nagios/etc
3、Nagios目录介绍
Nagios安装完成后,各个目录结构以及功能说明如下表所示:运维监控利器Nagios之:安装nagios
4、 安装Nagios插件
这里下载的版本是nagios-plugins-1.4.14。
注意:插件版本与nagios版本的关联并不大。
[[email protected] nagios]#tar –zxvf nagios-plugins-1.4.14.tar.gz
[[email protected] nagios]#cd nagios-plugins-1.4.14
[[email protected] nagios-plugins-1.4.14]#./configure --prefix=/usr/local/nagios
[[email protected] nagios-plugins-1.4.14]# make
[[email protected] nagios-plugins-1.4.14]# make install
安装完成,在/usr/local/nagios下的libexec目录下,生成很多可执行文件,这些正是nagios所需要的插件。
5、安装Nagios中文化插件
中文插件下载地址:
http://sourceforge.net/projects/nagios-cn/files/
下载对应nagios版本的中文插件,然后开始安装:
[[email protected] ~]#tar xvfz nagios-cn-3.2.0.tar.bz2
[[email protected] nagios-cn-3.2.0]#cd nagios-cn-3.2.0
[[email protected] nagios-cn-3.2.0]#./configure
[[email protected] nagios-cn-3.2.0]#make all
[[email protected] nagios-cn-3.2.0]#make install
6、安装与配置apache和php
apache和php不是安装nagios所必须的,但是nagios提供了web监控界面,通过web监控界面可以清晰的看到被监控主机、资源的运行状态,因此,安装一个web服务是很必要的。
需要注意的是,nagios在nagios3.1.x版本以后,配置web监控界面时需要php的支持。这里我们下载的nagios版本为nagios-3.2.0,因此在编译安装完成apache后,还需要编译php模块,这里选取的php版本为php5.3.2。
(1)安装apache与php
首先安装apache,步骤如下:
[[email protected] ~]# tar zxvf httpd-2.0.63.tar.gz
[[email protected] ~]#cd httpd-2.0.63
[[email protected] ~]#./configure --prefix=/usr/local/apache2
[[email protected]nagiosserver ~]#make
[[email protected] ~]#make install
接着安装php,步骤如下:
[[email protected] ~]# tar zxvf php-5.3.2.tar.gz
[[email protected] ~]#cd php-5.3.2
[[email protected] ~]#./configure --prefix=/usr/local/php \
>--with-apxs2=/usr/local/apache2/bin/apxs
[[email protected] ~]#make
[[email protected] ~]#make install
从安装步骤可知,apache安装路径为/usr/local/apache2,而php安装路径为/usr/local/php。
(2)配置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
接着增加如下内容:
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,下面要创建这个文件:
[[email protected] nagios]#/usr/local/apache2/bin/htpasswd \
>-c /usr/local/nagios/etc/htpasswd ixdba
New password: (输入密码)
Re-type new password: (再输入一次密码)
Adding password for user ixdba
这样就在/usr/local/nagios/etc目录下创建了一个htpasswd验证文件,当通过http://ip/nagios/访问时就需要输入用户名和密码了。
最后,启动服务:
[[email protected] nagiosserver ~]#/usr/local/apache2/bin/apachectl start