I'm trying to set up an ES cluster on three Windows hosts. Those hosts are currently offline, and I cannot extract screenshots.
All three nodes have the following elasticsearch.yml:
bootstrap.memory_lock: false
cluster.name: elasticsearch
http.port: 9200
node.master: true
node.data: true
node.max_local_storage_nodes: 1
node.name: server1
path.data: C:\ProgramData\Elastic\Elasticsearch\data
path.logs: C:\ProgramData\Elastic\Elasticsearch\logs
transport.tcp.port: 9300
xpack.license.self_generated.type: basic
xpack.security.enabled: false
network.host: 127.0.0.1
discover.zen.ping.unicast.hosts: ["IP1(to replace the actual IP)", "IP2", "IP3"]
cluster.initial_master_nodes: ["IP1(to replace the actual IP)", "IP2", "IP3"]
A connection error is thrown and a warning shows up with the following text:
master not discovered yet, this node has not previously joined a bootstrapped (v7+) cluster
Any advice? Also, are there any Windows specific steps I might follow?
(I'm sorry for not being able to extract the error logs)