- 论坛徽章:
- 0
|
Nagios 3 & Centreon 2 RC5 安装与配置
不死鸟
写这篇文章的初衷是让自己以后能比较方便的配置nagios和centreon,很多朋友可能也遇到同样的问题。所以现在打算继续把这篇文章写好。我现在面临毕业答辩和找工作,空余时间不是很多,尽量及时更新。
版本
10/28/2008 对文章中部分错误进行修改
10/27/2008 完善内容
0、软件版本
1、安装前准备
2、Nagios 3安装
3、ndoutils安装
4、Centreon 2 RC5安装
5、BUG fix
6、制作自己的中文语言包
7、参考
0 软件版本
操作系统是Centos 5.2,在安装之前配置DAG源
rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
nagios版本 nagios-3.0.3 http://nchc.dl.sourceforge.net/sourceforge/nagios/nagios-3.0.3.tar.gz
ndoutils版本 ndoutils-1.4b7 http://nchc.dl.sourceforge.net/sourceforge/nagios/ndoutils-1.4b7.tar.gz
centreon centreon-2.0-RC5 http://download.centreon.com/centreon/centreon-2.0-RC5.tar.gz
目前ndoutils和centreon已经有了更新的版本,安装时使用root用户
1、安装前准备
更新操作系统
#yum update
安装 Apache2
#yum install httpd
安装 GD modules
#yum install gd fontconfig-devel libjpeg-devel libpng-devel gd-devel perl-GD
安装 MySQL
#yum install openssl-devel perl-DBD-MySQL mysql-server mysql-devel
安装 PHP
#yum install php php-mysql php-gd
安装 DBI modules
#yum install perl-DBI perl-DBD-MySQL
安装 RRDTools
#yum install rrdtool perl-rrdtool
安装 SNMP
#yum install perl-Crypt-DES perl-Digest-SHA1 perl-Digest-HMAC net-snmp-utils
#yum install perl-Socket6 perl-IO-Socket-INET6 net-snmp net-snmp-libs php-snmp dmidecode lm_sensors perl-Net-SNMP net-snmp-perl
配置 SNMP
修改/etc/snmp/snmpd.conf,确保几行被启用,192.168.3.1换成你的运行nagios的地址
com2sec notConfigUser 192.168.3.1 public
group notConfigGroup v1 notConfigUser
group notConfigGroup v2c notConfigUser
access notConfigGroup "" any noauth exact all none none
view all included .1 80
view systemview included .1.3.6.1.2.1.1
view systemview included .1.3.6.1.2.1.25.1.1
其他一些必须的包
#yum install fping perl-Config-IniFiles graphviz cpp gcc gcc-c++ libstdc++ glib2-devel
安装配置 PEAR
安装
#yum install php-pear
配置,
#pear channel-update pear.php.net
如果需要使用代理访问网络的,使用下面的方式配置代理
pear config-set http_proxy http://my_proxy.com:port
2、Nagios安装
添加用户和组(如果已存在,可以跳过该步骤)
/usr/sbin/usermod -G nagios,nagcmd apache
下载Nagios 3
#cd /usr/local/src/
#wget http://switch.dl.sourceforge.net/sourceforge/nagios/nagios-3.0.3.tar.gz
解压缩
#tar -xzvf nagios-3.0.3.tar.gz
#cd nagios-3.0.3
配置安装:
#./configure --prefix=/usr/local/nagios --with-command-group=nagcmd --enable-nanosleep
#make all
#make install
#make install-init
#make install-commandmode
#make install-config
安装Nagios Plugins
# cd /usr/local/src
# wget http://downloads.sourceforge.net/nagiosplug/nagios-plugins-1.4.12.tar.gz
解压缩:
# tar -xzf nagios-plugins-1.4.12.tar.gz
# cd nagios-plugins-1.4.12
配置安装:
# ./configure --with-nagios-user=nagios --with-nagios-group=nagios
# make
# make install
注意:这里不要配置nagios(不用创建配置文件),这个工作使用Centreon来完成,这就是Centreon的作用
3、Ndoutils安装
下载和安装
# cd /usr/local/src
# wget http://surfnet.dl.sourceforge.net/sourceforge/nagios/ndoutils-1.4b7.tar.gz
# tar -xzf ndoutils-1.4b7.tar.gz
# cd ndoutils-1.4b7
# vi README
# ./configure --prefix=/usr/local/nagios/ --enable-mysql --disable-pgsql --with-ndo2db-user=nagios --with-ndo2db-group=nagios
# make
需要自己拷贝文件到目标目录
当编译完ndoutils后,执行下面命令
# cp ./src/ndomod-3x.o /usr/local/nagios/bin/ndomod.o
# cp ./src/ndo2db-3x /usr/local/nagios/bin/ndo2db
# sudo chmod 774 /usr/local/nagios/bin/ndo*
# sudo chown nagios:nagios /usr/local/nagios/bin/ndo*
创建NDO2DB服务脚本
创建文件/etc/init.d/ndo2db (vi /etc/init.d/ndo2db),写入下面的内容。
#!/bin/sh
#
#
# chkconfig: 345 99 01
# description: Nagios to mysql
#
# Author : phenix
# Realase : 07/02/08
# Version : 0.99
# File : ndo2db
# Description: Starts and stops the Ndo2db daemon
# used to provide network services status in a database.
#
status_ndo ()
{
if ps -p $NdoPID > /dev/null 2>&1; then
return 0
else
return 1
fi
return 1
}
printstatus_ndo()
{
if status_ndo $1 $2; then
echo "ndo (pid $NdoPID) is running..."
else
echo "ndo is not running"
fi
}
killproc_ndo ()
{
echo "kill $2 $NdoPID"
kill $2 $NdoPID
}
pid_ndo ()
{
if test ! -f $NdoRunFile; then
echo "No lock file found in $NdoRunFile"
echo -n " checking runing process..."
NdoPID=`ps h -C ndo2db -o pid`
if [ -z "$NdoPID" ]; then
echo " No ndo2db process found"
exit 1
else
echo " found process pid: $NdoPID"
echo -n " reinit $NdoRunFile ..."
touch $NdoRunFile
chown $NdoUser:$NdoGroup $NdoRunFile
echo "$NdoPID" > $NdoRunFile
echo " done"
fi
fi
NdoPID=`head $NdoRunFile`
}
# Source function library
# Solaris doesn't have an rc.d directory, so do a test first
if [ -f /etc/rc.d/init.d/functions ]; then
. /etc/rc.d/init.d/functions
elif [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
fi
prefix=/usr/local/nagios
exec_prefix=${prefix}
NdoBin=${exec_prefix}/bin/ndo2db
NdoCfgFile=${prefix}/etc/ndo2db.cfg
NdoRunFile=${prefix}/var/ndo2db.run
NdoLockDir=/var/lock/subsys
NdoLockFile=ndo2db.lock
NdoUser=nagios
NdoGroup=nagios
# Check that ndo exists.
if [ ! -f $NdoBin ]; then
echo "Executable file $NdoBin not found. Exiting."
exit 1
fi
# Check that ndo.cfg exists.
if [ ! -f $NdoCfgFile ]; then
echo "Configuration file $NdoCfgFile not found. Exiting."
exit 1
fi
# See how we were called.
case "$1" in
start)
echo -n "Starting ndo:"
touch $NdoRunFile
chown $NdoUser:$NdoGroup $NdoRunFile
$NdoBin -c $NdoCfgFile
if [ -d $NdoLockDir ]; then
touch $NdoLockDir/$NdoLockFile;
fi
ps h -C ndo2db -o pid > $NdoRunFile
if [ $? -eq 0 ]; then
echo " done."
exit 0
else
echo " failed."
$0 stop
exit 1
fi
;;
stop)
echo -n "Stopping ndo: "
pid_ndo
killproc_ndo
# now we have to wait for ndo to exit and remove its
# own NdoRunFile, otherwise a following "start" could
# happen, and then the exiting ndo will remove the
# new NdoRunFile, allowing multiple ndo daemons
# to (sooner or later) run
#echo -n 'Waiting for ndo to exit .'
for i in 1 2 3 4 5 6 7 8 9 10 ; do
if status_ndo > /dev/null; then
echo -n '.'
sleep 1
else
break
fi
done
if status_ndo > /dev/null; then
echo
echo 'Warning - ndo did not exit in a timely manner'
else
echo 'done.'
fi
rm -f $NdoRunFile $NdoLockDir/$NdoLockFile
;;
status)
pid_ndo
printstatus_ndo ndo
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: ndo {start|stop|restart|status}"
exit 1
;;
esac
增加可执行权限
#chmod +x /etc/init.d/ndo2db
自动启动
#chkconfig ndo2db on
注意:这里先不要创建ndo使用的数据库,在centreon安装完成以后创建即可
4、Centreon 2 RC5安装
#wget http://download.centreon.com/centreon/centreon-2.0-RC5.tar.gz
#tar xzvf centreon-2.0-RC5.tar.gz
#cd centreon-2.0-RC5
安装分两步,第一步在控制台安装,然后通过网页进行下一步的安装
#./install.sh
按照提示设置目录等一些信息,绝大多数默认尽可(RRD和PEAR可能要自己设置)。安装完之后,打开http://localhost/centreon
开始下一步的设置。
安装的时候有些地方可能存在问题,按照提示设置就可以了。例如目录和文件权限问题,用户和组都设为apache即可
下面重要的就是设置数据库了。尽量使ndoutil使用单独的数据库,在centreon的www/install里面有几个创建表的SQL文件。createNDODB.sql为创建ndoutil使用的数据库的。
通过phpmyadmin导入就可以了。
centreon安装以后,默认会生成默认的nagios配置文件。这是重启http和nagios及ndo2db,这样应该就没问题了。
5、BUG fix
修改/etc/soduers,去掉(注释掉)
Defaults requiretty
6、创建中文语言包
http://trac.centreon.com/browser/trunk/translations?rev=6831
下载相应语言的messages.po
#msgfmt messages.po -v -o /usr/local/centreon/www/locale/zh_CN/LC_MESSAGES/messages.mo
/usr/local/centreon/www/locale/zh_CN/LC_MESSAGES/目录要手动创建
重启httpd,即可选择中文
通过以上步骤基本上就可以通过centreon配置和使用nagios了。剩余的中文问题也比较容易解决,配合其他nagios插件,是比较好的开源网管方案
7、参考
http://en.doc.centreon.com/Setup:Centreon2LinuxDistributionUseRPM
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/86458/showart_1663038.html |
|