nagios安装

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:
###############绪论#############################################################################

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

相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
监控 网络协议 测试技术
|
JavaScript 前端开发
|
监控 Windows
|
监控 Unix Linux
|
监控 Linux Apache
|
监控 Linux 调度