Hi, This configuration is incorrect:
<value>127.0.0.1:47100..47509</value> <value>172.26.116.67:47100..47509</value> First of all, since you're building a distributed cluster, you should not use loopback here. Put real addresses that discovery component binds to. Second of all, 47100 is a port for communication, not for discovery, so ranges should be 47500..47509 instead. In addition, please check that you not only can ping containers from each other, but that you can telnet to Ignite ports after first node is started. Sometimes it happens with Docker, that you can explicitly open ports. And finally, setting offHeapMaxMemory to zero actually enables and makes off-heap storage unlimited. To disable it should be set to -1, but this is actually a default value, so you don't need to do this either. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Unable-to-create-cluster-of-Apache-Ignite-Server-Containers-running-on-individual-VMs-tp9287p9314.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
