Restore vCenter Server from a File-Based Backup
Restore the management domain vCenter Server from a file-based backup on the appliance
you deployed
from
an OVA file.
UI Procedure
- Log in to the appliance management interface (VAMI) of the management domain vCenter Server athttps://<vcenter_server_fqdn>:5480asroot.
- Navigate to the default cluster of the management domain.
- Select theRestore.
- Provide the backup server address, protocol and the path to the backup file, and clickNext.
- Provide the SSO administrator user name and password, and clickNext.
- On the Ready to complete page, 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" $vCenterBackupPath = "10.221.78.133/F$/backup/vCenter/sn_sfo-m01-vc01.sfo.rainpole.io/M_8.0.1.00100_20231121-104120_" $locationtype ="SMB" $locationUser ="Administrator" $locationPassword ="VMw@re123!"
- Perform the configuration by running the command in the PowerShell console.Invoke-vCenterRestore -vCenterFqdn $tempvCenterFqdn -vCenterAdmin $tempvCenterAdmin -vCenterAdminPassword $tempvCenterAdminPassword -extractedSDDCDataFile $extractedSDDCDataFile -workloadDomain $workloadDomain -vCenterBackupPath $vCenterBackupPath -locationtype $locationtype -locationUser $locationUser -locationPassword $locationPassword