當您使用從主要資料中心匯出的 OVA 檔案在次要資料中心建立節點之後,請設定 OpenSearch 複寫的節點。

針對次要資料中心中的每個節點遵循下列步驟。

必要條件

在設定次要資料中心內的節點之前,手動將 cluster.initial_master_nodes 值設定為次要叢集的 FQDN。請參閱 為 Workspace ONE Access 的次要資料中心內的節點設定 OpenSearch

程序

  1. 將主要資料中心叢集的負載平衡器 FQDN 新增至次要資料中心叢集中各個節點的 /usr/local/horizon/conf/runtime-config.properties 檔案。
    1. 存取 /usr/local/horizon/conf/runtime-config.properties 檔案以進行編輯。
      vi /usr/local/horizon/conf/runtime-config.properties
    2. 在檔案中變更下列行:
      analytics.replication.peers=https://LB_FQDN_of_second_cluster

      analytics.replication.peers=https://LB_FQDN_of_primary_cluster
  2. 在所有節點上重新啟動 Workspace ONE Access 服務。
    service horizon-workspace restart
  3. 在叢集中的所有節點上執行下列命令,以確認叢集已正確設定。

    curl 'http://localhost:9200/_cluster/health?pretty'

    用來確認 OpenSearch 健全狀況的命令應該會傳回如下的結果。

    {
      "cluster_name" : "horizon",
      "status" : "green",
      "timed_out" : false,
      "number_of_nodes" : 3,
      "number_of_data_nodes" : 3,
      "discovered_master" : true,
      "active_primary_shards" : 90,
      "active_shards" : 180,
      "relocating_shards" : 0,
      "initializing_shards" : 0,
      "unassigned_shards" : 0,
      "delayed_unassigned_shards" : 0,
      "number_of_pending_tasks" : 0,
      "number_of_in_flight_fetch" : 0,
      "task_max_waiting_in_queue_millis" : 0,
      "active_shards_percent_as_number" : 100.0
    }