Hi,
I'm trying to configuration a cluster with 1 Master node , 2 slave nodes. After restarting the service, master elascticseach.bat is okey but slave elascticseach.bat been getting the following error:
[node_154] not enough master nodes discovered during pinging (found [[]], but needed [-1]), pinging again
Master elasticsearch.yml configuration ip:10.200.2.152
cluster.name: project_cluster
node.name: mlpcare_node_152
node.master: true
node.data: true
node.ingest: false
bootstrap.memory_lock: true
discovery.zen.ping.unicast.hosts: ["ES152","ES153", "ES154"]
slave node config
cluster.name: project_cluster ip:10.200.2.153
node.name: node_153
node.master: false
node.data: true
node.ingest: false
network.host: 0.0.0.0
discovery.zen.ping.unicast.hosts: ["ES152","ES153", "ES154"]
cluster.name: project_cluster ip:10.200.2.154
node.name: node_154
node.master: false
node.data: true
node.ingest: false
network.host: 0.0.0.0
discovery.zen.ping.unicast.hosts: ["ES152","ES153", "ES154"]
hosts Same
#127.0.0.1 localhost
10.200.2.152 ES152
10.200.2.153 ES153
10.200.2.154 ES154