监控软件nagios之添加Linux主机

1.首先要确定nagios监控软件在服务器端安装

2.在监控端要安装nrpe插件

[[email protected] ~]# yum install xinetd openssl openssl-devel -y

[[email protected] ~]# wget http://liquidtelecom.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz

[[email protected] ~]# tar xvf nrpe-2.15.tar.gz

[[email protected] ~]# cd /root/nrpe-2.15

[[email protected] nrpe-2.15]# ./configure  --prefix=/usr/local/nagios-plugins-2.0.3/

[[email protected] nrpe-2.15]# make all

[[email protected] nrpe-2.15]# make install-plugin

[[email protected] nrpe-2.15]# ll /usr/local/nagios-4.0.8/libexec/check_nrpe
-rwxrwxr-x. 1 nagios nagios 76769 Apr  1 17:35 /usr/local/nagios-4.0.8/libexec/check_nrpe
[[email protected] nrpe-2.15]#

3.在Linux被控端安装客户端软件(nagios-plugins和nrpe)

[[email protected] ~]# yum install openssl openssl-devel xinetd -y

[[email protected] ~]# groupadd  -g 500 nagios

[[email protected] ~]# useradd  -r -s /sbin/nologin -u 500 -g nagios nagios

[[email protected] ~]# wget http://nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz

[[email protected] ~]# wget http://liquidtelecom.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz

[[email protected] ~]# tar xvf nagios-plugins-2.0.3.tar.gz

[[email protected] ~]# tar xvf nrpe-2.15.tar.gz

[[email protected] ~]# cd nagios-plugins-2.0.3

[[email protected] nagios-plugins-2.0.3]# ./configure --prefix=/usr/local/nagios-plugins-2.0.3 --with-nagios-user=nagios --with-nagios-group=nagios

[[email protected] nagios-plugins-2.0.3]# make && make install

[[email protected] nagios-plugins-2.0.3]# cd /usr/local/

[[email protected] local]# chown  -R nagios:nagios nagios-plugins-2.0.3/

[[email protected] local]# cd /root/nrpe-2.15

[[email protected] nrpe-2.15]# ./configure  --prefix=/usr/local/nagios-plugins-2.0.3/

[[email protected] nrpe-2.15]# make all

[[email protected] nrpe-2.15]# make install-plugin

[[email protected] nrpe-2.15]# make install-daemon

[[email protected] nrpe-2.15]# make install-daemon-config

[[email protected] nrpe-2.15]# make install-xinetd

[[email protected] nrpe-2.15]# ll /usr/local/nagios-plugins-2.0.3/
total 20
drwxrwxr-x. 2 nagios nagios 4096 Apr  1 17:18 bin
drwxrwxr-x. 2 nagios nagios 4096 Apr  1 17:18 etc
drwxr-xr-x. 2 nagios nagios 4096 Apr  1 17:10 include
drwxrwxr-x. 2 nagios nagios 4096 Apr  1 17:18 libexec
drwxr-xr-x. 3 nagios nagios 4096 Apr  1 17:10 share

[[email protected] nrpe-2.15]# vim /etc/xinetd.d/nrpe

only_from       = 127.0.0.1 192.168.1.247             --添加监控服务器端地址

[[email protected] nrpe-2.15]# vim /usr/local/nagios-plugins-2.0.3/etc/nrpe.cfg

allowed_hosts=127.0.0.1,192.168.1.247              --添加监控服务器主机的IP地址

[[email protected] nrpe-2.15]# vim /etc/services

nrpe            5666/tcp                # nrpe            --添加服务器监听端口

[[email protected] nrpe-2.15]# /etc/init.d/xinetd restart
Stopping xinetd:                                           [  OK  ]
Starting xinetd:                                           [  OK  ]
[[email protected] nrpe-2.15]# netstat -antup | grep 5666
tcp        0      0 :::5666                     :::*                        LISTEN      32747/xinetd       
[[email protected] nrpe-2.15]# /usr/local/nagios-plugins-2.0.3/libexec/check_nrpe -H localhost
NRPE v2.15
[[email protected] nrpe-2.15]#

3.在监控端测试连接被控端,添加被控端主机

[[email protected] nrpe-2.15]# /usr/local/nagios-4.0.8/libexec/check_nrpe -H 192.168.1.248
NRPE v2.15

[[email protected] etc]# cd /usr/local/nagios-4.0.8/etc/objects/

[[email protected] objects]# cp -a templates.cfg  tong2.cfg
[[email protected] objects]# vim tong2.cfg

时间: 2024-11-05 15:55:45

监控软件nagios之添加Linux主机的相关文章

Nagios配置—添加linux主机监控

nagios安装请参看:Nginx平台安装Nagios监控服务 下面是我添加linux监控机的过程,如有错误或者不当的地方请指出: 测试环境: 监控主机:nagios+nagios插件+nrpe+网站平台 192.168.1.210 被监控机:nagios插件+nrpe   192.168.1.211 1.首先在监控主机上安装nrpe,nagios只能监控一些外部的信息,例如:ftp端口有没有开放,ssh端口有没有开放,ping值如何之类的,如果想监控linux主机一些本地的信息如:硬盘使用情况

企业级监控软件nagios实战[老男孩教育精品]-限时免费

企业级监控软件nagios实战[老男孩linux精品课程]-限时免费注意:限时全免费,截止7月25日.http://edu.51cto.com/course/course_id-1740.html兼容Centos5.8和6.4,同时也适合red hat linux系列! 北京老男孩培训,全国最负责.最高端.最专业的linux运维实战教育机构!打造中国IT实效教育第一品牌! 交流群 246054962 208160987 145178854(标明51CTO) ├─1老男孩linux培训VIP视频-

监控软件nagios之配置文件详解

1.nagios根目录 [[email protected] nagios-4.0.8]# lltotal 28drwxrwxr-x.  2 nagios nagios 4096 Apr  1 14:50 bin          --二进制文件drwxrwxr-x.  3 nagios nagios 4096 Apr  1 15:27 etc          --配置文件drwxr-xr-x.  2 root   root   4096 Apr  1 15:23 include       

监控软件nagios之安装

1.安装软件依赖包和创建nagios用户 [[email protected] ~]# yum install gcc gcc-c++ make -y [[email protected] ~]# groupadd -g 500 nagios[[email protected] ~]# useradd  -r -u 500 -s /sbin/nologin -g nagios nagios[[email protected] ~]# 2.安装apache和php环境 [[email protec

我们来看下 监控软件 Nagios 和 cacti 结合

来看下 两者区别 Cacti:在监控方面绘图比较不错,在流量与图型展现比较存在优势 Nagios:在故障分析比较不错,报警机制相对来说比较好,报警机制:邮箱.短信等,而且也比Cacti灵活:同时适用监控大量服务器以及服务器上面大批服务状态是否正常,重点不在图形化,而在状态故障的监控 1.安装相关的软件包 [[email protected] Desktop]# yum -y install httpd php gcc glibc glibc-common gd gd-devel libpng l

监控软件nagios错误总结

1.安装好nagios软件后点击任意页面报错 It appears as though you do not have permission to view information for any of the hosts you requested... 解决方法: [[email protected] conf]# vim /usr/local/nagios-4.0.8/etc/cgi.cfg use_authentication=0       --将1改为0,不用认证 [[email p

zabbix入门到精通之Zabbix对linux主机的监控

我们大概了解了怎么对台主机进行监控,主要步骤设计到添加主机,并且为主机添加监控项,这里主要为item,然后在item的基础上对item进行绘图并且通过screen的方式把不同的监控图像汇总到一张screen上.通过对quick章节我们认识到item监控项在zabbix中是非常重要的,而item的监控是通过key来定义的,key又分为系统预定义好的key和自定义的key组成,这一节,我们通过对zabbix预定义的内存key来了解一下key到底是怎么组成和怎么使用的. Key 参数 类型 单位 举例

开源监控软件icinga

常见开源监控软件nagios,cacti,zabbix,ganglia,openNMS. 这里就不多说,接下来我们做的是nagios的变种icinga,他们互相兼容,只是icinga被汉化了. 一.准备工作: 1.两台虚拟机或服务器,一台监控端,一台被监控端. 这里我们定义 监控端ip为192.168.137.250,hostname:server 被监控端ip为192.168.137.20,hostname:client 2.软件安装包icinga.tar.gz,nagios.tar.gz 二

微软HPC群集添加Linux计算节点

HPC群集系统中计算资源的管理是重要的一块,如果能够实现计算作业可以在异构操作系统上面协同运作,无疑将是一大亮点,微软HPC pack自2012 upate3开始,支持本地linux作为计算节点,微软官网写到如何添加linux计算节点进入HPC群集的方法,但仅是Ubuntu版本的操作,而且有些关键步骤并没有写出,导致如果不是很懂linux的微软系统管理员做起来会遇到各种问题,因此老王通过本文将实际环境中安装涉及到的步骤全部呈现,并讨论linux计算节点为微软HPC群集带来的可能性. 本文以hpc