Deploy a vCenter Server Appliance from an
OVA File
To restore a vCenter Server instance, you first deploy a new appliance from an OVA
file on the temporary vCenter Server, deployed during partial bring-up. You then use this
appliance to restore the management domain or VI workload domain.
UI Procedure
- Mount the vCenter Server ISO in Windows Explorer.
- Log in to the temporary vCenter Server, deployed at the partial bring-up operation, and navigate to the default cluster.
- Right-click the cluster and selectDeploy OVF Template.
- Navigate to thevcsafolder on the mounted ISO, select the vCenter Server OVA file, and clickNext.
- Enter the virtual machine name and clickNext.
- On theCompute resourcepage, select the cluster and clickNext.
- On theReview detailspage, if warnings appear, clickIgnoreand clickNext.
- On theLicense agreementspage, clickI accept all license agreementsand clickNext.
- On theConfigurationpage, select the correct size for the vCenter Server, and clickNext.
- On theSelect storagepage, select the vSAN datastore, and clickNext.
- On theSelect networkspage, select the management network, and clickNext.
- On theCustomize templatepage enter the following information, and clickNext.SectionSettingValueNetworking ConfigurationHost Network IP Address Familyipv4Host Network ModestaticHost Network IP Address<vcenter_server_ip_address>Host Network Prefix<management_network_prefix>Host Network Default Gateway<management_network_gateway>Host Network DNS Servers<dns_server_comma_separated_list>Host Network Identity<vcenter_server_fqdn>SSO ConfigurationN/AN/ASystem ConfigurationRoot Password<vcenter_server_root_password>Upgrade ConfigurationN/AN/AMiscellaneousN/AN/ANetworking PropertiesDomain Name<dns_domain_name>Domain Search Path<domain_search_path_comma_separated_list>
- On theReady to completepage, review the details and clickFinish.
PowerShell Procedure
- Start PowerShell.
- Replace the values in the sample code with your values and run the commands in the PowerShell console.$tempVcenterFqdn = "sfo-m01-vc02.sfo.rainpole.io" $tempvCenterAdmin = "administrator@vsphere.local" $tempvCenterAdminPassword = "VMw@re1!" $extractedSDDCDataFile = ".\extracted-sddc-data.json" $workloadDomain = "sfo-m01" $restoredvCenterDeploymentSize = "small" $vCenterOvaFile = "F:\OVA\VMware-vCenter-Server-Appliance-7.0.3.01400-21477706_OVF10.ova"
- Perform the configuration by running the command in the PowerShell console.New-vCenterOvaDeployment -vCenterFqdn $tempVcenterFqdn -vCenterAdmin $tempvCenterAdmin -vCenterAdminPassword $tempvCenterAdminPassword -extractedSDDCDataFile $extractedSDDCDataFile -workloadDomain $workloadDomain -restoredvCenterDeploymentSize $restoredvCenterDeploymentSize -vCenterOvaFile $vCenterOvaFile