Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
I can set up all the tests I need for my vCenter server, physical hosts and VM’s. Awesome job. Once I got the VMWare Perl SDK installed and configured with all the necessary Perl modules (which the VMWare installer installed automatically), I was able to successfully run the script, but this is the error I got when trying some scripts against my hosts:
CHECK_ESX3.PL CRITICAL – Server version unavailable at ‘https://…
This was due to the nature of the ESXi SSL certificate. I disabled SSL by adding the following near the top of my check_esx3.pl script, around line 32 or so:
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
Now it works great!!!