我有一个由 Nagios 监控的 AWS EC2 项目。
我的 Nagios 在 AWS 外部的服务器上运行。
服务监控有效,但主机监控无效。
我该如何修复它?
define host {
use linux-server
host_name myserver.com
alias
address 44.211.111.211
max_check_attempts 5
check_period 24x7
notification_interval 30
notification_period 24x7
}
define service{
host_name myserver.com
service_description myserver.com_web
check_command check_https_with_auth!myserver.com
max_check_attempts 5
check_period 24x7
notification_interval 30
notification_period 24x7
}
答案1
Nagios 默认情况下使用 ICMP(“Ping”)来测试主机的可达性。
更新EC2 安全组允许从您的 Nagios 地址进行 ICMP 访问 - 这将解决您的问题。