vi-admin@localhost:~> uname -a
Linux localhost 3.0.101-0.47.71-default #1 SMP Thu Nov 12 12:22:22 UTC 2015 (b5b212e) x86_64 x86_64 x86_64 GNU/Linux
I added a host and service definition to my cfg file when I reloaded Nagios I got this critical error
connect to address 10.2.8.7 and port 12489: Connection refused
The Hosts view shows this Host as up but the service fails to connect
I also have a Raspberry Pi running Raspbian and I just added that and it works fine same config
Code: Select all
define host{
use windows-server
host_name RaspberryPi
alias Rasbian
address 10.2.8.70
}
define host{
use windows-server
host_name vMA
alias VmWare
address 10.2.8.7
}
define service{
use generic-service
host_name RaspberryPi
service_description Uptime
check_command check_nt!UPTIME
}
define service{
use generic-service
host_name vMA
service_description Uptime
check_command check_nt!UPTIME
}
Thanks