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=0For 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