I’m getting the above error when trying to execute disk checks on my remote host. The CPU and MEM checks work fine. I’m not sure what the problem is here. Here’s NRPE.cfg on the remote host:
command[check_disk_d]=D:\NRPE\Plugins\nrpe_nt_plugins\bin\diskspace_nrpe_nt.exe d: 77 90
command[check_disk_c]=D:\NRPE\Plugins\nrpe_nt_plugins\bin\diskspace_nrpe_nt.exe c: 77 90
command[check_cpu]=D:\NRPE\Plugins\nrpe_nt_plugins\bin\cpuload_nrpe_nt.exe 70 90
command[check_mem]=D:\NRPE\Plugins\nrpe_nt_plugins\bin\memload_nrpe_nt.exe 70 90
Here’s the bit from my services.cfg file:
define service{
use nrpe-service
host_name www-01
check_command check_nrpe!3306!check_disk_c
service_description Disk Space - C:
normal_check_interval 60
retry_check_interval 1
register 1
notification_interval 180
max_check_attempts 3
notification_options u,c,r
}
define service{
use nrpe-service
host_name www-01
check_command check_nrpe!3306!check_disk_d
service_description Disk Space - D:
normal_check_interval 60
retry_check_interval 1
register 1
notification_interval 180
max_check_attempts 3
notification_options u,c,r
}
Totally stumped here. Any ideas?