...
- Download the ovftool: https://my.vmware.com/web/vmware/details?productId=614&downloadGroup=OVFTOOL420
- Install on the desktop that you will use to upload the image.
- Open an administrative command prompt.
- Navigate to where you installed the ovftool, which defaults to:
C:\Program Files\Vmware\Vmware OVF Tool\
The syntax for the ovftool is as follows:
Code Block language bash ovftool [parameter] source target
There are many of parameters, but the minimum to deploy the Platform OVA is network (–net) and datastore (-ds):
Code Block language bash C:\Program Files\VMware\VMware OVF Tool> .\ovftool.exe ^ --acceptAllEulas -ds=disk2 --net:"nat"="VM Network" ^ 'I:\Downloads\Platform-9.1-20180622.ova' vi://root@10.0.0.23
The -acceptAllEulas switch is to accept the Caringo DataCore EULA.
- The datastore is selected with the -ds= switch.
- The network is selected with the --net: switch, which selects the "nat" network that the ovf expects/requires and the "VM Network" that exists on Hypervisor.
- Next, point to the download.
- Specify the host and VMware user that you are using to deploy the OVA.
The output should resemble this:
Code Block language bash Opening OVA source: I:\Downloads\Platform-9.1-20180622.ova The manifest validates Opening VI target: vi://root@10.0.0.23:443/ Deploying to VI: vi://root@10.0.0.23:443/ Transfer Completed Completed successfully PS C:\Program Files\VMware\VMware OVF Tool>
...