I'm trying to setup 3 server nodes in my local machine. Each node starts but
unable to join the cluster.

I can see the below message being logged in the log file for each server
node.

    Topology snapshot [ver=1, servers=1, clients=0, CPUs=4, heap=0.1GB]

Here is my code to start the server.

IgniteConfiguration config = new IgniteConfiguration();
TcpDiscoverySpi spi = new TcpDiscoverySpi();
TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder(true);
ipFinder.setAddresses(Arrays.asList("192.168.0.3","192.168.0.3:47100..47120"));
spi.setIpFinder(ipFinder);
config.setDiscoverySpi(spi);
// Start Ignite node.
ignite = Ignition.start(config);

Can anyone please suggest if I was missing something here! 



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Server-nodes-unble-to-discover-each-other-in-Apache-Ignite-tp6640.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to