TcpDiscoveryMulticastIpFinder ipFinder=new TcpDiscoveryMulticastIpFinder();
ipFinder.setAddresses(Collections.singletonList("<IPAddress>:47500..47509"));
tcpDiscoverySpi.setIpFinder(ipFinder);
Trying to connect to server node from client node using TCP IP Finder, but not able to connect. My client node is in the local machine whereas the ServerNode is in a remote server.
Is it possible to connect to a remotely hosted Gridgain/Ignite server using Java Springboot from another machine?