Hello XI Support
We have installed new modGearman VM (with NRPE agent and plugins 2.2.1), but getting check_xi_service_dns missing.
Should it be replaced with check_dns for the services offloaded to that VM or should we copy over check_xi_service_dns to the modGearman machine (/usr/local/nagios/libexec)?
Thanks
check_xi_service_dns missing from modGearman machine
Re: check_xi_service_dns missing from modGearman machine
The "check_xi_service_dns" is just a command that uses the "check_dns" plugin:
You can define the command on the worker to see if the error will go away.
Code: Select all
define command {
command_name check_xi_service_dns
command_line $USER1$/check_dns -H $HOSTADDRESS$ $ARG1$
}Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: check_xi_service_dns missing from modGearman machine
To compile the check_dns plugin, there are some requirements that have to be installed for the plugin to be compiled.
Prerequisites for check_dig check_dns plugins is the bind-utils package.
The best thing is to install this package on the remote server.
Then recompile the plugins and see if it works for you.
Prerequisites for check_dig check_dns plugins is the bind-utils package.
The best thing is to install this package on the remote server.
Code: Select all
yum install -y bind-utilsBe sure to check out our Knowledgebase for helpful articles and solutions!
Re: check_xi_service_dns missing from modGearman machine
Yes installing or re-compiling bind utilities fix the problemtgriep wrote:To compile the check_dns plugin, there are some requirements that have to be installed for the plugin to be compiled.
Prerequisites for check_dig check_dns plugins is the bind-utils package.
The best thing is to install this package on the remote server.Then recompile the plugins and see if it works for you.Code: Select all
yum install -y bind-utils
Please close this ticket