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 액세스를 허용하면 문제가 해결됩니다.