ES 6.3 - bound or publishing to a non-loopback address, enforcing bootstrap checks

Hello, I am struggling for hours trying to get a new ES 6.3 cluster setup in Docker. The error is as below:

] [rpi-1] bound or publishing to a non-loopback address, enforcing bootstrap checks
ERROR: [1] bootstrap checks failed
[1]: JVM is using the client VM [Java HotSpot(TM) Client VM] but should be using a server VM for the best performance

If I remove network.publish_host: 192.168.0.101 from the config below, it will start up and try to connect to another node but will fail because it is trying to join a cluster using 127.0.0.1

My Config:

#action.destructive_requires_name: true
xpack.ml.enabled: false
node.name:  c054915212b1
discovery.zen.ping.unicast.hosts: [192.168.0.108, 192.168.0.103, 192.168.0.104]
http.cors.enabled: true
http.cors.allow-origin: "*"
node.master: true
network.publish_host:  192.168.0.101
http.bind_host:  192.168.0.101
http.publish_host:  192.168.0.101
http.host:  192.168.0.101

I have never had an issue setting up a cluster prior to this release. Your help is greatly appreciated.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.