To ensure that vSphere HA powers on the virtual machines of VMware Aria Operations for Logs and Workspace ONE Access in the correct order, you define the startup order of the virtual machines by using VM groups.
UI Procedure
- Log in to the management domain vCenter Server at https://<management_vcenter_server_fqdn>/ui as administrator@vsphere.local.
- In the Hosts and clusters inventory, expand the management domain vCenter Server tree and expand the management domain data center.
Select the default management vSphere cluster and click the Configure tab.
Create the VM/Host group for VMware Aria Operations for Logs.
In the navigation pane, click
.To configure the VM/Host group for the VMware Aria Operations for Logs cluster, click Add VM/host group, configure the following settings, configure the remaining settings according to your VMware Cloud Foundation Planning and Preparation Workbook, and click OK.
Setting
Value
Type
VM Group
Create a rule to power on the standalone Workspace ONE Access virtual machine before the VMware Aria Operations for Logs cluster virtual machines.
Select the default management vSphere cluster and click the Configure tab.
In the navigation pane, click
.Click Add VM/host rule, configure the following settings, configure the remaining settings according to your VMware Cloud Foundation Planning and Preparation Workbook, and click OK.
Setting
Value
Enable rule
Selected
Type
Virtual machines to virtual machines
PowerShell Procedure
Start 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!" $sddcDomainName = "sfo-m01" $ruleName = "vm-vm-rule-wsa-vrli" $drsGroupNameIla = "sfo-m01-vm-group-vrli" $drsGroupNameWsa = "sfo-m01-vm-group-wsa" $drsGroupVMs = "sfo-vrli01a,sfo-vrli01b,sfo-vrli01c"
Perform the configuration by running the command in the PowerShell console.
Add-ClusterGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $sddcDomainName -drsGroupName $drsGroupNameIla -drsGroupVMs $drsGroupVMs Add-VmStartupRule -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $sddcDomainName -ruleName $ruleName -vmGroup $drsGroupNameIla -dependOnVmGroup $drsGroupNameWsa