SSL Exception Error 14077102 SSL23_GET_SERVER_HELLO unsupported protocol | Vmware vCenter Converter

Environment
  • Vmware ESXi 4
  • Vmware ESXi 6.7
  • Vmware vCenter Converter Standalone 6.2.0


Content
Ran Vmware vCenter Converter Standalone 6.2.0. Got this error when migrating a machine from Vmware ESXi 4 to 6.7
A general system error occurred: SSL Exception: error:14077102:SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol

Following https://kb.vmware.com/s/article/2020517 (Disabling SSL encryption on VMware Converter Standalone 5.x and 6.0 (2020517)), to disable SSL encryption not work.

Finally,  solved it based on http://pupuweb.com/vmware-vcenter-converter-standalone-show-ssl-exception-error-14077102-ssl23_get_server_hello-unsupported-protocol/

1: Change <ssloption> from 123422720 to 56313856, & <usessl> from true to false

C:\ProgramData\VMware\VMware vCenter Converter Standalone
converter-worker.xml
<ssl><ssloptions>56313856</ssloptions></ssl>
<usessl>false</usessl>

converter-agent.xml
<ssl><ssloptions>56313856</ssloptions></ssl>

converter-server.xml
<ssl><ssloptions>56313856</ssloptions></ssl>


C:\Program Files (X86)\VMware\VMware vCenter Converter Standalone
converter-client.xml
<ssl><ssloptions>56313856</ssloptions></ssl>

<converterserverconnectionpipe>
   [...]

   <usessl>false</usessl>

   [...]
</converterserverconnectionpipe>


2: Restart VMware vCenter Converter Standalone Worker service, and VMware vCenter Converter Standalone Server service



Update