I am getting different issue now. I added my custom server configuration file
to the Docker Image build :
ENV CONFIG_URI apache-ignite/config/ignite-server-config.xml
and I defined my network configuration :
/<property name="ipFinder">
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
<property name="addresses">
<list>
<value>127.0.0.1:47500..47504</value>
</list>
</property>
</bean>
</property>/
When I start my Docker container :
/
docker run --rm --name myignite1 -p 47500:47500 -p 47501:47501 -p
10800:10800 -it myignite/ignite:1.0/
I am getting this message :
Failed to connect to any address from IP finder (make sure IP finder
addresses are correct and firewalls are disabled on all host machines):
[/127.0.0.1:47500, /127.0.0.1:47501, /127.0.0.1:47502, /127.0.0.1:47503,
/127.0.0.1:47504]
However if I switch to Multicast configuration it seems like I am starting
correctly.
In both cases my client fails to connect to the Cluster.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/