Nos muestra el siguiente 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.Esto ocurre porque no se puede verificar el certificado SSL del servidor.
Establezca la variable de entorno siguiente en el shell:
BASH
bash
export PERL_LWP_SSL_VERIFY_HOSTNAME=0Para que el comando sea persistente, hay que añadirlo al bash_profile del usuario root.
BASH
php
echo "export PERL_LWP_SSL_VERIFY_HOSTNAME=0" >> ~/.bash_profile
Comentarios