将客户端添加到 Nagios 服务器

现在让我们添加一些 客户监视器 经过 Nagios 服务器.

添加 EPEL 存储库 安装 ”nagios 插件“ 和 ”天然橡胶” 包裹在 客户系统。
另请查看: 如何为 RHEL/CentOS 6/5 启用 EPEL Repository 并在 CentOS 6.3 中安装 Nagios-3.4
Nagios 服务器:
操作系统 : CentOS 6.4
IP地址 : 192.168.1.80
Nagios 客户端:
操作系统 : CentOS 6.3
IP地址 : 192.168.1.81
在要监控的客户端系统中安装“nrpe”和“nagios-plugins”包。

[[email protected] ~]# yum install -y nrpe nagios-plugins-all openssl

配置客户端

[[email protected] ~]# nano /etc/nagios/nrpe.cfg
## Line 81 - Add the Nagios server IP ## allowed_hosts=127.0.0.1 192.168.1.80

启动nrpe服务

[[email protected] ~]# /etc/init.d/nrpe start Starting nrpe: [ OK ] [[email protected] ~]# chkconfig nrpe on

要通过 nagios 服务器添加要监控的客户端,请打开 nagios 服务器中的“nagios.cfg”文件并取消注释以下行。

服务器添加客户端

[[email protected] ~]# nano /etc/nagios/nagios.cfg
## Line 52 - Uncomment ## cfg_dir=/etc/nagios/servers

在“/etc/nagios/”下创建一个名为“servers”的目录。

[[email protected] ~]# mkdir /etc/nagios/servers

为要监控的客户端创建配置文件。

[[email protected] ~]# nano /etc/nagios/servers/clients.cfg

插入这个:

define host{ use linux-server host_name client alias client address 192.168.1.81 max_check_attempts 5 check_period 24x7 notification_interval 30 notification_period 24x7 }

重启 nagios 服务。

[[email protected] ~]# /etc/init.d/nagios restart Running configuration check...done. Stopping nagios: .done. Starting nagios: done.

现在打开nagios admin 浏览器中的控制台并导航到左侧窗格中的“主机”部分。 您将看到新添加的客户端将在那里可见。 点击主机查看是否有任何错误或警报。