Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

VMware Perl SDK error “Server Version Unavailable”

Leer en espanol
VMware Perl SDK error “Server Version Unavailable”

Table of contents

CODEtextServer version unavailable at 'https://hostname:443/sdk/vimService.wsdl' at /usr/lib/perl5/5.8.8/VMware/VICommon.pl line 545. Esto ocurre porque no se puede ve ===

It shows us the following error:

CODE
text
Server version unavailable at 'https://hostname:443/sdk/vimService.wsdl' 
at /usr/lib/perl5/5.8.8/VMware/VICommon.pl line 545.

This occurs because the server's SSL certificate cannot be verified.

Set the following environment variable in the shell:

BASH
Bash
export PERL_LWP_SSL_VERIFY_HOSTNAME=0

For the command to be persistent, it must be added to the root user's bash_profile.

BASH
php
echo "export PERL_LWP_SSL_VERIFY_HOSTNAME=0" >> ~/.bash_profile

Comments