プライマリ データセンターからエクスポートされた 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
    }