发布时间:2014-09-05 13:25:51作者:知识屋
参考此文档 http://blog.csdn.net/xtdhqdhq/article/details/19197635(Nagios监控服务端与客户端的安装)
假设监控机:192.168.0.10 server1
被监控机:192.168.0.11 server2
此处简要的说明注意的几个点:
在server2上:
1、修改nrpe.cfg
监控主机的nagios是通过调用被监控机的nrpe来获取信息,那么我们先在被监控机的nrpe配置上添加要搜索的信息,也就是一些命令,然后nagios就通过nrpe调用这些命令来获取信息。这些命令是在nrpe.cfg文件中定义:
command[check_mysql_status]=/usr/local/nagios/libexec/check_mysql -H localhost -u nagios -p nagios -P 3306
2、启动nrpe服务
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
3、测试下面命令是否能执行
/usr/local/nagios/libexec/check_mysql -H localhost -u nagios -p nagios -P 3306
在server1 上:
1、配置nagios监控主机的配置文件
/usr/local/nagios/etc/nagios.cfg
cfg_file=/usr/local/nagios/etc/objects/commands.cfg #nagios可调用的监控命令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_dir=/usr/local/nagios/etc/servers #新添加的目录,把需要添加的主机文件放进去,就不必在这里一行行添加cfg_file=/usr/local/nagios/etc/objects/hostgroups.cfg #新添加,主机组配置cfg_file=/usr/local/nagios/etc/objects/localhost.cfg #本地信息监迭
2、利用nrpe监控server2主机的本地信
利用nrpe监控server2 主机的本地信息
首先是解决nagios怎么去调用nrpe命令,之前我们配置时有说过nagios调用的命令是从command.cfg文件中定义过的,那么要使用nrpe也须要在该文件中定义
nano command.cfg
在文件中添加以下配置
# 'check_nrpe' command definition define command{ command_name check_nrpe command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ }
3、添加被监控机
创建server2的cfg文件在/usr/local/nagios/etc/servers目录下,并修改其
cp /usr/local/nagios/etc/objects/localhost.cfg /usr/local/nagios/etc/servers/192.168.0.11.cfg
nano 192.168.0.11.cfg
# HOST DEFINITION# Define a host for the local machinedefine host{ use linux-server ; Name of host template to use ; This host definition will inherit all variables that are defined ; in (or inherited by) the linux-server host template definition. host_name 192.168.0.11 alias linux-server 11 address 192.168.0.11 }define service{ use local-service ; Name of service template to use host_name 192.168.0.11 service_description MySQL check_command check_nrpe!check_mysql_status # notifications_enabled 0 }
4、创建hostgroups.cfg
注释掉localhost 中的hostgroup ,在此文件中同意定义
nano hostgroups.cfg
###############################################################################
###############################################################################
# HOST GROUP DEFINITION
###############################################################################
###############################################################################
# Define an optional hostgroup for Linux machines
define hostgroup{
hostgroup_name linux-servers ; The name of the hostgroup
alias Linux Servers ; Long name of the group
members localhost ; Comma separated list of hosts that belong to this group
}
define hostgroup{
hostgroup_name linux-servers-jk ; The name of the hostgroup
alias Linux Servers Jk ; Long name of the group
members 192.168.0.11 ; Comma separated list of hosts that belong to this group
}
5、重启nagios
service nagios reload
参考文档:http://lihuipeng.blog.51cto.com/3064864/570698
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能