使用从主数据中心导出的 OVA 文件在辅助数据中心创建节点后,必须手动为辅助集群中的所有节点设置 cluster.initial_master_nodes 属性值,以便为辅助数据中心节点形成 OpenSearch 集群。
使用为辅助数据中心内的第一个节点输入的相同属性值配置辅助数据中心中的每个节点。
过程
- 在辅助数据中心的第一个节点中,访问要编辑的文件。
vi /opt/vmware/opensearch/config/opensearch.yml
- 编辑以下行,添加 cluster.initial_master_nodes 属性值作为辅助数据中心第一个节点的 FQDN。
cluster.initial_master_nodes: firstnode.fqdn.from.secondary.site
- 使用相同的属性值配置辅助数据中心内的每个节点。
- 在所有节点上重新启动 OpenSearch 服务。
{ {service opensearch restart } }
- 确认在所有节点上都正确设置了 OpenSearch 集群。
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
}
下一步做什么
配置辅助数据中心内的节点以进行 OpenSearch 复制。