###############绪论#############################################################################
nagios是一款开源监控软件,运行在LINUX/UNIX平台,其配置文件复杂关联性,网上给了一个美名"难够死"。
早期2.X版本,无须安装PHP,目前新版是3.X,需要PHP的支持。
本文安装过程是参考的田逸的《互联网运营智慧》一书,更详细的可以去查看。
http://baike.baidu.com/view/5017732.htm
#################################################################################################
##############前提条件########################################################################
nagios是基于LAMP环境(linux+apache+mysql+php)搭建的,所以首先要先把这个环境跑起来,
然后再编译安装nagios。
监控端只需把mysql软件包传上去即可,无须安装,目的是在编译naigos-plugin时,生成check_mysql命令。
监控端需要安装 nagios-3.2.1.tar.gz
nagios-plugins-1.4.14.tar.gz
nrpe-2.12.tar.gz
被监控端需要安装 nagios-plugins-1.4.14.tar.gz
nrpe-2.12.tar.gz
##############################################################################################
###############涉及的nagios配置文件################################
nagios.cfg ——主配置文件,用来修改对象配置文件
cgi.cfg —— 允许访问nagios网页平台用户配置文件
htpasswd.users —— 登陆nagios网页平台用户名和密码存放的加密文件
resource.cfg —— 用来存放nagios命令插件配置文件
nrpe.cfg —— 被监控端监控资源配置文件
commands.cfg —— 监控命令配置文件
templates.cfg —— 监控模板文件
timeperiods.cfg —— 时间模板文件
contacts.cfg —— 故障时通知的联系人配置文件
contactgroups.cfg —— 故障时通知的联系人组配置文件
hosts —— 监控主机配置文件
hostgroups —— 监控主机组配置文件
services —— 监控主机服务配置文件
####################################################################
##############
###安装步骤###
##############
##########首先安装gcc包,用于编译安装软件用################
yum --disablerepo=\* --enablerepo=c5-media install *gcc*
###########################################################
#############Apache########################################
./configure --prefix=/usr/local/apache --enable-so
make
make install
# vi /usr/local/apache/conf/httpd.conf
AddType application/x-httpd-php .php
Include conf/nagios.conf
###########################################################
######PHP-plugin#########################################
./configure --prefix=/usr/local/libiconv
make
make install
yum --disablerepo=\* --enablerepo=c5-media install *freetype* *jpeg* *png* *gd* *libxml*
#########################################################
#############mysql####################
vi /etc/ld.so.conf
/usr/local/mysql/lib
ldconfig -v
vi /root/.bash_profile
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' IDENTIFIED BY '123456';
flush privileges;
######################################
######PHP############################
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-libxml-dir --with-iconv=/usr/local/libiconv --with-config-file-path=/usr/local/php/etc --with-gd --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-ldap --with-ldap-sasl --with-gettext --enable-mbstring --enable-sockets
make ZEND_EXTRA_LIBS='-liconv'
make install
cp php.ini-dist /usr/local/php/etc/php.ini
######################################
############naigos####################
useradd nagios
./configure --prefix=/usr/local/nagios --with-command-group=nagios
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf
([root@vm01 nagios-3.2.1]# make install-webconf
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
/usr/bin/install: 无法创建一般文件“/etc/httpd/conf.d/nagios.conf”: 没有那个文件或目录
make: *** [install-webconf] 错误 1)
mkdir -p /etc/httpd/conf.d/
[root@vm01 nagios-3.2.1]# make install-webconf
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
*** Nagios/Apache conf file installed ***
/usr/local/apache/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
chkconfig --add nagios
chkconfig nagios on
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
######################################
###########naigos-plugin##############
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-mysql
make && make install
######################################
############nrpe#####################
./configure --enable-command-args
make all
make install-plugin
make install-daemon
make install-daemon-config
vi nrpe.cfg
dont_blame_nrpe=1
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
/usr/local/nagios/libexec/check_nrpe -H localhost
#######################################
nagios是一款开源监控软件,运行在LINUX/UNIX平台,其配置文件复杂关联性,网上给了一个美名"难够死"。
早期2.X版本,无须安装PHP,目前新版是3.X,需要PHP的支持。
本文安装过程是参考的田逸的《互联网运营智慧》一书,更详细的可以去查看。
http://baike.baidu.com/view/5017732.htm
#################################################################################################
##############前提条件########################################################################
nagios是基于LAMP环境(linux+apache+mysql+php)搭建的,所以首先要先把这个环境跑起来,
然后再编译安装nagios。
监控端只需把mysql软件包传上去即可,无须安装,目的是在编译naigos-plugin时,生成check_mysql命令。
监控端需要安装 nagios-3.2.1.tar.gz
nagios-plugins-1.4.14.tar.gz
nrpe-2.12.tar.gz
被监控端需要安装 nagios-plugins-1.4.14.tar.gz
nrpe-2.12.tar.gz
##############################################################################################
###############涉及的nagios配置文件################################
nagios.cfg ——主配置文件,用来修改对象配置文件
cgi.cfg —— 允许访问nagios网页平台用户配置文件
htpasswd.users —— 登陆nagios网页平台用户名和密码存放的加密文件
resource.cfg —— 用来存放nagios命令插件配置文件
nrpe.cfg —— 被监控端监控资源配置文件
commands.cfg —— 监控命令配置文件
templates.cfg —— 监控模板文件
timeperiods.cfg —— 时间模板文件
contacts.cfg —— 故障时通知的联系人配置文件
contactgroups.cfg —— 故障时通知的联系人组配置文件
hosts —— 监控主机配置文件
hostgroups —— 监控主机组配置文件
services —— 监控主机服务配置文件
####################################################################
##############
###安装步骤###
##############
##########首先安装gcc包,用于编译安装软件用################
yum --disablerepo=\* --enablerepo=c5-media install *gcc*
###########################################################
#############Apache########################################
./configure --prefix=/usr/local/apache --enable-so
make
make install
# vi /usr/local/apache/conf/httpd.conf
AddType application/x-httpd-php .php
Include conf/nagios.conf
###########################################################
######PHP-plugin#########################################
./configure --prefix=/usr/local/libiconv
make
make install
yum --disablerepo=\* --enablerepo=c5-media install *freetype* *jpeg* *png* *gd* *libxml*
#########################################################
#############mysql####################
vi /etc/ld.so.conf
/usr/local/mysql/lib
ldconfig -v
vi /root/.bash_profile
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' IDENTIFIED BY '123456';
flush privileges;
######################################
######PHP############################
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-libxml-dir --with-iconv=/usr/local/libiconv --with-config-file-path=/usr/local/php/etc --with-gd --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-ldap --with-ldap-sasl --with-gettext --enable-mbstring --enable-sockets
make ZEND_EXTRA_LIBS='-liconv'
make install
cp php.ini-dist /usr/local/php/etc/php.ini
######################################
############naigos####################
useradd nagios
./configure --prefix=/usr/local/nagios --with-command-group=nagios
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf
([root@vm01 nagios-3.2.1]# make install-webconf
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
/usr/bin/install: 无法创建一般文件“/etc/httpd/conf.d/nagios.conf”: 没有那个文件或目录
make: *** [install-webconf] 错误 1)
mkdir -p /etc/httpd/conf.d/
[root@vm01 nagios-3.2.1]# make install-webconf
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
*** Nagios/Apache conf file installed ***
/usr/local/apache/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
chkconfig --add nagios
chkconfig nagios on
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
######################################
###########naigos-plugin##############
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-mysql
make && make install
######################################
############nrpe#####################
./configure --enable-command-args
make all
make install-plugin
make install-daemon
make install-daemon-config
vi nrpe.cfg
dont_blame_nrpe=1
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
/usr/local/nagios/libexec/check_nrpe -H localhost
#######################################
mount -t iso9660 -o loop /home/rhel-server-5.5-x86_64-dvd.iso /var/ftp/pub/
本文转自 liang3391 51CTO博客,原文链接:http://blog.51cto.com/liang3391/723513