<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
How to Get the Admin and Worker Node Details from OAG Node
Okta Classic Engine
Access Gateway
Overview
This article details how to get admin and worker node details from the OAG node.
Applies To
  • Okta Access Gateway (OAG)
  • High Availability 
Solution

To view the worker nodes on the admin, there are three options:

  1. From the Admin UI Log storage view :
Admin Ui Node View
  1. From the high availability option > "4. List nodes" through the management console:
Management Console Worker Node View   ​​
  1.  Cluster node details can also be found in file "/opt/oag/configs/events/config/ha_configuration.config" on any (admin or worker) node. The below command can be used to list admin and worker(destination) nodes:
  • Login to the appliance shell and execute the command below:

grep -E "ha_admin_node|ha_destination_nodes" /opt/oag/configs/events/config/ha_configuration.config 

  • The following example output shows the admin node (oag.support.lab) and three worker nodes (worker1.support.lab, worker2.support.lab, and worker3.support.lab):

[0] oag-local@oag.support.lab;/home/oag-local# grep -E "ha_admin_node|ha_destination_nodes" /opt/oag/configs/events/config/ha_configuration.config
ha_admin_node = oag.support.lab
ha_destination_nodes = worker2.support.lab,worker1.support.lab,worker3.support.lab

Loading
How to Get the Admin and Worker Node Details from OAG Node