Nagios - 主机和服务
Nagios 是最流行的工具,用于监控 IT 基础架构中运行的主机和服务。 主机和服务配置是 Nagios Core 的构建块。
主机就像一台电脑; 它可以是物理设备或虚拟设备。
服务是 Nagios 用来检查主机的服务。
您可以在 Nagios 的服务器目录中创建一个主机文件,并提及主机和服务定义。 例如 −
sudo gedit /usr/local/nagios/etc/servers/ubuntu_host.cfg
# Ubuntu Host 主机配置文件
define host {
use linux-server
host_name ubuntu_host
alias Ubuntu Host
address 192.168.1.10
register 1
}
define service {
host_name ubuntu_host
service_description PING
check_command check_ping!100.0,20%!500.0,60%
max_check_attempts 2
check_interval 2
retry_interval 2
check_period 24x7
check_freshness 1
contact_groups admins
notification_interval 2
notification_period 24x7
notifications_enabled 1
register 1
}
上述定义添加了一个名为 ubuntu_host 的主机,并定义了将在该主机上运行的服务。 当您重新启动 Nagios 时,此主机将开始受到 Nagios 的监控,并运行指定的服务。
Nagios 中有更多服务可用于监控正在运行的主机上的几乎所有内容。