If the management domain is configured with two availability zones, to activate failover to the second availability zone, move the VMware Aria Operations for Logs virtual machines to the VM group for the first availability zone. The virtual machine write operations are performed synchronously across both availability zones and each availability zone has a copy of the data.

UI Procedure

  1. Log in to the management domain vCenter Server at https://<management_vcenter_server_fqdn>/ui as [email protected].
  2. In the Hosts and clusters inventory, expand the management domain vCenter Server tree and expand the management domain data center.
  3. Select the default management vSphere cluster and click the Configure tab.

  4. In the left pane, select Configuration > VM/Host groups.

  5. Select the VM group for the first availability zone according to your value in the VMware Cloud Foundation Planning and Preparation Workbook, and click Add VM/Host group members.

  6. In the Add group member dialog box, select the three virtual machines of the VMware Aria Operations for Logs cluster according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and click OK.

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!"
    
    $sddcDomainName = "sfo-m01"
    
    $drsVmGroupNameAz = "sfo-m01-cl01_primary-az-vmgroup"
    $vmList = "sfo-vrli01a,sfo-vrli01b,sfo-vrli01c"
  3. Perform the configuration by running the command in the PowerShell console.

    Add-VmGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $sddcDomainName -name $drsVmGroupNameAz -vmList $vmList