Configure NTP on vRealize Suite Lifecycle Manager to keep it synchronized with the other SDDC components in the recovery VMware Cloud Foundation instance. You configure the time synchronization in the vRealize Suite Lifecycle Manager.
For the following procedure, use the VMware Cloud Foundation Planning and Preparation Workbook.
UI Procedure
- Log in to vRealize Suite Lifecycle Manager at https://<vrealize_suite_lifecycle_manager_fqdn> as vcfadmin@local.
- On the My services page, click Lifecycle operations.
- In the navigation pane, click Settings.
In the System administration section, click Time settings.
For Applicable time sync mode, select Use time server (NTP).
In the Time server(s) (NTP) section, click Add new server.
In the Add server dialog box, configure the settings according to your VMware Cloud Foundation Planning and Preparation Workbook, and click Submit.
PowerShell Procedure
Start Windows PowerShell.
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $ntpServer = "ntp.lax.rainpole.io" $ntpServerDesc = "VCF NTP Server 2"
Perform the configuration by running the command in the PowerShell console.
Add-vRSLCMNtpServer -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -ntpServer $ntpServer -ntpServerDesc $ntpServerDesc