Deploy the SDDC Manager Appliance from an
OVA File
You deploy a new SDDC Manager appliance by using the OVA file that you downloaded
during the preparation for the restore.
UI Procedure
- In a Web browser, log in to the management domain vCenter Server athttps://<vcenter_server_fqdn>/uiby using the vSphere Client.
- 仮想マシンおよびテンプレートインベントリで、管理ドメインの vCenter Server ツリーを展開し、管理ドメイン データセンターを展開します。
- Right-click the management folder and selectDeploy OVF Template.
- On theSelect an OVF templatepage, selectLocal file, and upload the SDDC Manager OVA file, and clickNext.
- On theSelect a name and folderpage, in theVirtual machine nametext box, enter a virtual machine name, and click Next.
- On theSelect a compute resourcepage, clickNext.
- On the Review details page, review the settings and clickNext.
- On theLicense agreementspage, accept the license agreement and clickNext.
- On theSelect storagepage, select the vSAN datastore and clickNext.The datastore must match thevsan_datastorevalue in themetadata.jsonfile that you downloaded from the SDDC Manager backup during the preparation for the restore.
- On theSelect networkspage, from theDestination networkdrop-down menu, select the management network distributed port group and clickNext.The distributed port group must match theport_groupvalue in themetadata.jsonfile that you downloaded during the preparation for the restore.
- On theCustomize templatepage, enter the following values and click Next.SettingDescriptionEnter root user passwordYou can use the originalrootuser password or a new password.Enter login (vcf) user passwordYou can use the originalvcfuser password or a new password.Enter basic auth user passwordYou can use the originaladminuser password or a new password.Enter backup (backup) user passwordThe backup password that you saved during the preparation for the restore. This password can be changed later.Enter Local user passwordYou can use the original Local user password or a new password.HostnameThe FQDN must match thehostnamevalue in themetadata.jsonfile that you downloaded during the preparation for the restore.NTP sourcesThe NTP server details for the appliance.Enable FIPsThe FIPS configuration in themetadata.jsonfile that you saved during the preparation for the restore. You cannot restore a FIPS backup to a non-FIPS configured appliance.PSC AddressLeave blank.Initial PSC SSH passwordLeave blank.SSO UsernameLeave blank.SSO passwordLeave blank.Network 1 IP addressThe IP address for the appliance.Network 1 Subnet MaskThe subnet mask for the appliance.Network Default GatewayThe default gateway for the appliance.DNS Domain nameThe domain name for the appliance.Domain search pathThe domain search path(s) for the appliance.Domain name serversThe DNS servers for the appliance.
- On theReady to completepage, clickFinishand wait for the process to complete.
- When the SDDC Manager appliance deployment completes, expand the management folder.
- Right-click the SDDC Manager appliance and selectSnapshots>Take Snapshot.
- Right-click the SDDC Manager appliance, selectPower>Power On.
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" $sddcManagerOvaFile="F:\OVA\VCF-SDDC-Manager-Appliance-4.5.1.0-21682411.ova" $rootUserPassword = "VMw@re1!" $vcfUserPassword = "VMw@re1!" $localUserPassword = "VMw@re1!" $basicAuthUserPassword = "VMw@re1!"
- Perform the configuration by running the command in the PowerShell console.New-SDDCManagerOvaDeployment -vCenterFqdn $tempvCenterFqdn -vCenterAdmin $tempvCenterAdmin -vCenterAdminPassword $tempvCenterAdminPassword -extractedSDDCDataFile $extractedSDDCDataFile -sddcManagerOvaFile $sddcManagerOvaFile -rootUserPassword $rootUserPassword -vcfUserPassword $vcfUserPassword -localUserPassword $localUserPassword -basicAuthUserPassword $basicAuthUserPassword