To prepare vRealize Suite Lifecycle Manager for the deployment of vRealize Log Insight, you add the vRealize Log Insightadmin user password to vRealize Suite Lifecycle Manager Locker.
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 Locker.
- In the navigation pane, click Passwords.
On the Passwords page, click Add.
On the Add password page, configure the settings according to your VMware Cloud Foundation Planning and Preparation Workbook and click Add.
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!" $passwordAlias = "sfo-vrli01-admin" $password = "VMw@re1!" $userName = "admin"
Perform the configuration by running the command in the PowerShell console.
New-vRSLCMLockerPassword -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -alias $passwordAlias -password $password -userName $userName