I have two nodes each of which forms a cluster (with one empty node).
0.0.0.0:9200 (elasticsearch)
0.0.0.0:9201 (test-1)
Node at 9200 is in cluster elasticsearch
(maybe default cluster.name
). Node at 9201 is in cluster test-1
. (Additionally, important or not, I bind network.host
s of both nodes to 0.0.0.0)
I want to join a new node to test-1
. When I leave discovery.zen.ping.unicast.hosts
setting commented out alone, the new node is successfully joined to test-1
. However, When I set it something else, e.g., ["0.0.0.0"]
or ["127.0.1"]
, it is failed to join...
Joining a new node to elasticsearch
has no problem. ["0.0.0.0"]
, ["127.0.1"]
and ["IP"]
all worked well. (But ["0.0.0.0", "ANOTHER-IP"]
failed... Please answer about this as well if possible...)
What causes this joining issue? Have anybody experienced problems like this?