Nagios Cacti完全安装与整合(4)

 

 

首页服务器应用

背景:

阅读新闻

Nagios & Cacti完全安装与整合

[日期:2012-06-12]   来源:Linux社区  作者:linuxops   [字体:]  

--------------------第二部分:nagios配置文件分配问题---------------------------------------
配置文件的规划--有两种方案
方案一:根据主机服务分开放
系统文件统一放在objects目录下:
commands.cfg  localhost.cfg  timeperiods.cfg  contacts.cfg  templates.cfg
主机目录:建立hosts目录存放主机
服务目录:建立services目录存放服务
命令目录:建立commands目录存放命令
在nagios.cfg配置文件中修改相应地方如下:
cfg_file=/usr/local/nagios/etc/objects/commands.cfg
cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
cfg_file=/usr/local/nagios/etc/objects/templates.cfg
cfg_file=/usr/local/nagios/etc/objects/localhost.cfg

cfg_dir=/usr/local/nagios/etc/services
cfg_dir=/usr/local/nagios/etc/hosts
cfg_dir=/usr/local/nagios/etc/commands

方案二:每个服务器独立配置文件
系统文件统一放在objects目录下:
commands.cfg  localhost.cfg  timeperiods.cfg  contacts.cfg  templates.cfg
第个被监控服务器独立一个配置文件:
如:192.168.1.100.cfg
在配置文件中修改相应地方如下:
cfg_file=/usr/local/nagios/etc/objects/commands.cfg
cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg
cfg_file=/usr/local/nagios/etc/objects/templates.cfg
cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
cfg_file=/usr/local/nagios/etc/linux_srv/192.168.1.100.cfg
...
...
...
cfg_file=/usr/local/nagios/etc/linux_srv/192.168.1.110.cfg


根据情况自己做选择!!

一、配置监控Linux主机 实例
监控linux时是通过nrpe来建立连接,所以要在服务端和客户端先安装上pcre
服务端的安装:
tar zxvf nrpe-2.13.tar.gz
cd nrpe-2.13
./configure
make all
make install-plugin

测试插件与客户端是否正常通信
/usr/local/nagios/libexec/check_nrpe -H 192.168.8.30
NRPE v2.13
说明之间是连通的!!

定义check_nrpe监控命令
vi /usr/local/nagios/etc/objects/commands.cfg
添加如下内容:

# 'check_nrpe' command definition
define command{
        command_name    check_nrpe
        command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
        }


客户端的安装:

tar zxvf nrpe-2.13.tar.gz
cd nrpe-2.13
./configure
make all
make install-plugin
make install-daemon
make install-daemon-config

修改nrpe配置文件
vi /usr/local/nagios/etc/nrpe.cfg
找到下面两处并修改成如下样子:
server_address=192.168.8.30    //这是客户端本身自己IP地址,这里一定要写真实IP
allowed_hosts=192.168.8.130,127.0.0.1   //192.168.8.130是我的nagios监控机

启动nrpe
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
netstat -tunpl |grep 5566
lsof -i:5666

++++++++++++++++++++++++++++++++++++

 

批量部署ssh私钥认证以及pssh工具使用方法

CentOS 5.x下搭建基于虚拟用户的vsFTPd服务器实战

相关资讯       Nagios配置 

   

本文评论   查看全部评论 (0)


评论声明

尊重网上道德,遵守中华人民共和国的各项有关法律法规

承担一切因您的行为而直接或间接导致的民事或刑事法律责任

本站管理人员有权保留或删除其管辖留言中的任意内容

本站有权在网站内转载或引用您的评论

参与本评论即表明您已经阅读并接受上述条款

 

 

 

最新资讯

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/6c3d69c5560e55fe936d144eb79b473f.html