You can license vRealize Operations Manager individually or as part of vRealize Suite. If you have not added the vRealize Suite license to vRealize Suite Lifecycle Manager as part of another solution, you can add the license to the vRealize Suite Lifecycle Manager locker before deploying vRealize Operations Manager. Alternatively, during the deployment, you can manually add the license.
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 Licenses.
To add the license manually, click Add license manually, enter the vRealize Suite or vRealize Operations Manager license alias and key, click Validate, 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!" $licenseAlias = "vRealize Operations Manager" $licenseKey = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Perform the configuration by running the command in the PowerShell console.
New-vRSLCMLockerLicense -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -alias $licenseAlias -license $licenseKey