Update SSH Host Keys
For each ESXi host that you rebuilt as part of recovering the management cluster or a VI cluster, you must update the SSH host keys in the
known_hosts
file.- Download the relevant recovery tools zip file from https://kb.vmware.com/s/article/79004.
- Enable SSH on all Hosts in the Cluster by running the following powershell commands$restoredVcenterFqdn = "sfo-m01-vc01.sfo.rainpole.io" $restoredVcenterAdmin = "administrator@vsphere.local" $restoredVcenterAdminPassword = "VMw@re1!" $clusterName = "sfo-m01-cl01"Connect-VIServer -server $restoredVcenterFqdn -user $restoredVcenterAdmin -password $restoredVcenterAdminPassword Get-Cluster -name $clusterName | Get-VMHost | Get-VMHostService | Where-Object {$_.label -eq "SSH"} | Start-VMHostService Disconnect-VIServer -Server $global:DefaultVIServers -Force -Confirm:$false
- Refresh SDDC Manager SSH Keys.Replace x_x_x in the following commands with the relevant numbering for the version you downloaded.
- Copy therecovery_tools_python_x_x_x.zipfile to the/tmpdirectory on the SDDC Manager virtual appliance by using a secure file copy utility as the vcf user.
- SSH to the SDDC Manager VM as thevcfuser
- Switch to root and extract therecovery_tools_python_x_x_x.zip.su - cd /tmp unzip recovery_tools_python_x_x_x.zip cd /tmp/recovery_tools_python_x_x_x
- Run the following command to update all new SSH keys without the need to accept each individual key."yes" | python refreshsshkeys.pyc
- Alternatively, run the following command to update all new SSH keys with the need to accept each individual key.python refreshsshkeys.pyc
- Run the following command to update host attributes without the need to accept each individual key.python refreshhostattributes.pyc --domain=<domain-name>