Gather Information from the SDDC Manager Backup
The encrypted SDDC Manager backup contains information required for the recovery process.
UI Procedure
- Identify a backup file for the restore operation and download it from the SFTP server to your host machine.
- On your host machine, open a terminal and run the following command to extract the content of the backup file.OPENSSL_FIPS=1 openssl enc -d -aes-256-cbc -md sha256 -in filename-of-restore-file | tar -xz
- When prompted, enter theencryption_password.
- In the extracted folder, locate and open themetadata.jsonfile in a text editor.
- Locate thesddc_manager_ova_locationvalue and copy the URL.
- In a Web browser, paste the URL and download the SDDC Manager OVA file.
- In the extracted folder, locate and view the contents of thesecurity_password_vault.jsonfile.
- Write down the following information for each component:ComponentInformationESXi hosts
- FQDN
- IP address
- rootuser password
- Service account user name
vCenter Server- FQDN
- IP address
- rootuser password
- SSO administrator password
NSX Manager nodes- FQDN
- IP address
- adminuser password
- rootuser password
- audituser password
NSX Edge nodes- FQDN
- IP address
- rootuser password
- adminuser password
- audituser password
SDDC Manager- FQDN
- IP address
- rootuser password
- Backup user password
- FIPS configuration
PowerShell Procedure
- Windows PowerShell を起動します。
- サンプル コードの値を の値に置き換え、PowerShell コンソールでコマンドを実行します。$vcfBackupFilePath = ".\vcf-backup-sfo-vcf01-sfo-rainpole-io-2024-05-21-15-51-04.tar.gz" $encryptionPassword = "VMw@re1!VMw@re1!" $managementVcenterBackupFolderPath = "10.221.78.133/F$/backup/vCenter/sn_sfo-m01-vc01.sfo.rainpole.io/M_8.0.1.00100_20231121-104120_"
- PowerShell コンソールでコマンドを実行して、構成を実行します。New-ExtractDataFromSDDCBackup -vcfBackupFilePath $vcfBackupFilePath -managementVcenterBackupFolderPath $managementVcenterBackupFolderPath -encryptionPassword $encryptionPassword