在使用从主数据中心导出的 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_primary_cluster
- 在所有节点上重新启动 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
}