Nagios服务器端安装配置
 
一、安装配置nagios所需环境
Apache
PHP
GCC compiler
GD development libraries
 
1 apache
#./configure --prefix=/usr/local/apache
#make
#make install
 
2 PHP
#./configure  --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-gd 
#make
#make install
# cp -rf php.ini-production /usr/local/php/lib/php.ini
 
配置PHP
1)查看是否有LoadModule php5_module        modules/libphp5.so这一行
 
2# vi /usr/local/apache/conf/httpd.conf
找到#AddType application/x-gzip .gz .tgz 这行,在下面加两行
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
 
找到下面一行在后面加上index.php,这表示网站的默认页也能够为index.php
DirectoryIndex index.html index.htm index.php index.cgi
 
 
3 gd
 yum install gd.i386 gd.x86_64 gd-devel.i386 gd-devel.x86_64 gd-progs.x86_64
 
 
 
 
 
 
 
二、安装配置nagios
1创建系统账号
# /usr/sbin/useradd -m nagios
# passwd nagios
# /usr/sbin/groupadd nagcmd
# /usr/sbin/usermod -a -G nagcmd nagios
# /usr/sbin/usermod -a -G nagcmd apache
 
2安装配置nagios-core
#./configure --prefix=/usr/local/nagios --with-command-group=nagcmd
#make all
#make install
#make install-init
#make install-config
#make install-commandmode
# make install-webconf
将生成的配置文件拷入/usr/local/apache/conf/extra,并在httpd.conf中将nagios.conf包含进去。
# /usr/local/apache/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
#/usr/local/apache/bin/httpd -k start
 
3编译并安装Nagios 插件
#./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios
#make
#make install
 
4其他
配置nagios启动
#chkconfig --add nagios
#chkconfig nagios on
验证Nagios 的样例配置文件
#/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
如果没有报错,可以启动Nagios 服务
/etc/init.d/nagios start
 
现在可以从WEB 方式来接入Nagios 的WEB 接口了,你需要在提示下输入你的用户名(nagiosadmin)
和口令,你刚刚设置的,这里用系统默认安装的浏览器,用下面这个超链接
 
 
 
 
 
 
 
 
 
Nagios被监控端安装配置(linux)
 
有几种不同方式来监控远程Linux/UNIX 服务器的服务与属性。一个是应用共享式SSH 密钥运行check_by_ssh 插件来执行对远程主机的检测。这种方法本文档不讨论,但它会导致安装有Nagios 的监控服务器很高的系统负荷,尤其是你要监控成百个主机中的上千个服务时,这是因为要建立/毁构SSH 联接的总开销很高。
另一种方法是使用NRPE外部构件监控远程主机。NRPE外部构件可以在远程的Linux/Unix主机上执行插件程序。如果是要象监控本地主机一样对远程主机的磁盘利用率、CPU负荷和内存占用率等情况下,NRPE外部构件非常有用。
 
1创建系统账号
#/usr/sbin/useradd nagios
#passwd nagios
 
2安装nagios插件(nagios‐plugins)
#./configure
#make
#make install
#chown nagios.nagios /usr/local/nagios
#chown -R nagios.nagios /usr/local/nagios/libexec
 
3安装nrpe(监控机及被监控机都安装)
 
#./configure
#make all
#make install-plugin
#make install-daemon
#make install-daemon-config
#/usr/local/nagios/libexec/check_nrpe -H localhost
在监控与被监控机上启动NRPE:
#/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d