In vSphere, create new vCenter Single Sign-On local users that belong to the vsphere.local domain for Site Recovery Manager and vSphere Replication.
UI Procedure
- Log in to the management domain vCenter Server at https://<management_vcenter_server_fqdn>/ui as administrator@vsphere.local.
Select
.In the left pane, select
.On the Users tab, from the Domain drop-down menu, select vsphere.local.
Click Add, configure the Site Recovery Manager user according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and click Add.
Repeat the steps for the vSphere Replication user.
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!" $srmSsoUsername = "vrops-srm" $srmSsoPassword = "VMw@re1!VMw@re1!" $vrSsoUsername = "vrops-vr" $vrSsoPassword = "VMw@re1!VMw@re1!"
Perform the configuration by running the command in the PowerShell console.
Add-SsoUser -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -ssoUser $srmSsoUsername -ssoPass $srmSsoPassword Add-SsoUser -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -ssoUser $vrSsoUsername -ssoPass $vrSsoPassword