Deploy the First NSX Manager Cluster Node from
an OVA File
When the three nodes in an NSX Manager cluster are in a failed state, you begin the
restore process by restoring the first cluster node from an OVA file.
The first NSX Manager node is defined as the node
that took the backup of the NSX Manager cluster. To identify this node, examine the
name of the folder created during backup, as it will contain the node IP address as
part of the folder name.
UI Procedure
- In a Web browser, log in to the management domain vCenter Server athttps://<vcenter_server_fqdn>/uiby using the vSphere Client .
- Right-click the default cluster of the management domain and selectDeploy OVF Template.
- On theSelect an OVF templatepage, selectLocal file, clickUpload files, navigate to the location of the NSX Manager OVA file, clickOpen, and clickNext.
- On theSelect a name and folderpage, enter the VM name and clickNext.
- On theSelect a compute resourcepage, select the cluster and clickNext.
- On theReview detailspage, clickNext.
- On theConfigurationpage, select the appropriate size and clickNext.
- For the management domain selectMediumand for workload domains selectLargeunless you changed these defaults during deployment.
- On theSelect storagepage, select the management vSAN datastore, and clickNext.
- On theSelect networkspage, from theDestination networkdrop-down menu, select management distributed port group, and clickNext.
- On theCustomize templatepage, enter these values and clickNext.SettingValueSystem root user password<first_nsx_cluster_node_root_password>CLI admin user password<first_nsx_cluster_node_admin_password>You must enter a password. Do not leave the default value.CLI audit user password<first_nsx_cluster_node_audit_password>You must enter a password. Do not leave the default value.Hostname<first_nsx_cluster_node_fqdn>Default IPv4 gateway<first_nsx_cluster_node_gw>Management network IPv4 address<first_nsx_cluster_node_ip>Management network netmask<first_nsx_cluster_node_mask>DNS server list<dns_server_list>NTP server list<ntp_server_list>Enable SSHSelectedAllow root SSH loginsDeselected
- On theReady to completepage, review the deployment details and click Finish.
PowerShell Procedure
- Start PowerShell.
- Replace the values in the sample code with your values and run the commands in the PowerShell console.The values in this example are for the management domain. Replace with the values for the specific workload domain you are recovering.$tempvCenterFqdn = "sfo-m01-vc02.sfo.rainpole.io" $tempvCenterAdmin = "administrator@vsphere.local" $tempvCenterAdminPassword = "VMw@re1!" $extractedSDDCDataFile = ".\extracted-sddc-data.json" $workloadDomain = "sfo-m01" $restoredNsxManagerDeploymentSize = "medium" $nsxManagerOvaFile = "F:\OVA\nsx-unified-appliance-3.2.2.1.0.21487565.ova"
- Perform the operation by running the command in the PowerShell console.New-NSXManagerOvaDeployment -vCenterFqdn $tempvCenterFqdn -vCenterAdmin $tempvCenterAdmin -vCenterAdminPassword $tempvCenterAdminPassword -extractedSDDCDataFile $extractedSDDCDataFile -workloadDomain $workloadDomain -restoredNsxManagerDeploymentSize $restoredNsxManagerDeploymentSize -nsxManagerOvaFile $nsxManagerOvaFile