在使用从主数据中心导出的 OVA 文件在辅助数据中心创建节点后,请配置这些节点以进行 Elasticsearch 复制。
对于辅助数据中心的每个节点,请执行以下步骤。
过程
- 将主数据中心群集的负载平衡器 FQDN 添加到辅助数据中心群集内的每个节点的 /usr/local/horizon/conf/runtime-config.properties 文件中。
- 访问 /usr/local/horizon/conf/runtime-config.properties 文件以进行编辑。
vi /usr/local/horizon/conf/runtime-config.properties
- 更改此文件中的以下行:
analytics.replication.peers=https://LB_FQDN_of_second_cluster
至
analytics.replication.peers=https://LB_FQDN_of_primary_cluster
- 访问 /usr/local/horizon/conf/runtime-config.properties 文件以进行编辑。
- 在所有节点上重新启动 VMware Identity Manager 服务。
service horizon-workspace restart
- 在群集中的所有节点上运行以下命令,以验证是否正确设置了群集。
curl 'http://localhost:9200/_cluster/health?pretty'
该命令(用于验证 Elasticsearch 运行状况)将返回类似于下面的结果。
{ "cluster_name" : "horizon", "status" : "green", "timed_out" : false, "number_of_nodes" : 3, "number_of_data_nodes" : 3, "active_primary_shards" : 20, "active_shards" : 40, "relocating_shards" : 0, "initializing_shards" : 0, "unassigned_shards" : 0, "delayed_unassigned_shards" : 0, "number_of_pending_tasks" : 0, "number_of_in_flight_fetch" : 0 }