To prepare VMware Aria Suite Lifecycle for the deployment of VMware Aria Operations for Logs, you add the VMware Aria Operations for Logs admin user password to VMware Aria Suite Lifecycle Locker.

UI Procedure

  1. Log in to VMware Aria Suite Lifecycle at https://<aria_suite_lifecycle_fqdn> as vcfadmin@local.
  2. On the My services page, click Locker.
  3. In the navigation pane, click Passwords.
  4. On the Passwords page, click Add.

  5. On the Add password page, configure the settings according to your VMware Cloud Foundation Planning and Preparation Workbook and click Add.

PowerShell Procedure

  1. Start PowerShell.

  2. 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 = "[email protected]"
    $sddcManagerPass = "VMw@re1!"
    
    $passwordAlias = "sfo-vrli01-admin"
    $password = "VMw@re1!"
    $userName = "admin"
  3. 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