To start sending log data from the clustered Workspace ONE Access to vRealize Log Insight, install and configure the vRealize Log Insight agent on all Workspace ONE Access nodes.

UI Procedure

  1. Download the vRealize Log Insight agent.

    1. Log in to the first node of the clustered Workspace ONE Access at <first_workspace_one_access_fqdn>:22 by using a SecureShell (SSH) client as sshuser.
    2. Switch to the root user by running the command.

      su
    3. Download and install the .rpm file by running the command.

      curl -k -o /tmp/liagent.rpm https://<vrealize_log_insight_fqdn>/api/v1/agent/packages/types/rpm; rpm -Uvh /tmp/liagent.rpm
  2. Configure the vRealize Log Insight agent.

    1. Configure the vRealize Log Insight agent to start automatically by running the command.

      systemctl enable liagentd
    2. Edit the liagent.ini file by using a text editor such as vi.

      vi /var/lib/loginsight-agent/liagent.ini
    3. In the [server] section, modify the following parameters and save the file.

      [server] 
      hostname=<vrealize_log_insight_fqdn>
      proto=cfapi
      port=9000
      ssl=no
      
  3. Restart the vRealize Log Insight agent by running the command.

    systemctl restart liagentd
  4. Verify the running status of the vRealize Log Insight agent.

    systemctl status liagentd
  5. Repeat this procedure for the remaining nodes of the clustered Workspace ONE Access.

PowerShell Procedure

  1. Start Windows 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 = "administrator@vsphere.local"
    $sddcManagerPass = "VMw@re1!"
    
    $vmNameNode1 = "xint-wsa01a"
    $vmNameNode2 = "xint-wsa01b"
    $vmNameNode3 = "xint-wsa01c"
    $vmRootPass = "VMw@re1!"
  3. Perform the configuration by running the command in the PowerShell console.

    Install-vRLIPhotonAgent -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vmName $vmNameNode1 -vmRootPass $vmRootPass
    
    Install-vRLIPhotonAgent -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vmName $vmNameNode2 -vmRootPass $vmRootPass
    
    Install-vRLIPhotonAgent -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vmName $vmNameNode3 -vmRootPass $vmRootPass