无法连接到弹性搜索群集

时间:2018-03-28 12:25:01

标签: elasticsearch

我正在尝试为弹性搜索设置2个节点集群。

cluster.name:test-cluster

node.name:es- node1

node.master:true node.data:true

path.data:/ es / data path.logs:/ es / log

network.host:privateIP

http.port:9200 transport.tcp.port:9300

discovery.zen.ping.unicast.hosts:[PublicIP]

discovery.zen.minimum_master_nodes:1

1 个答案:

答案 0 :(得分:2)

在节点1上,您需要具有此节点,以便节点2可以看到节点1

network.host: PublicIP-Node1
discovery.zen.ping.unicast.hosts: [PublicIP-Node2]

同样,在节点2上你需要这个:

network.host: PublicIP-Node2
discovery.zen.ping.unicast.hosts: [PublicIP-Node1]