As an organization owner, set the organization name for vRealize Automation.
UI Procedure
- Log in to the vRealize Automation cloud services console at https://<vra_cluster_fqdn>/csp/gateway/portal as configadmin in the system domain.
- In the top-right corner, click the logged-in user drop-down menu, and select View organization.
- In the Organization name panel, click Edit.
- In the Display name text box, enter a name for your organization and click Save.
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!" $displayName = "Rainpole" $vraUser = "configadmin" $vraPass = "VMw@re1!"
-
Perform the configuration by running the command in the PowerShell console.
Update-vRAOrganizationDisplayName -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -displayName $displayName -vraUser $vraUser -vraPass $vraPass