om:* Denis Mekhanikov [mailto:dmekhani...@gmail.com]
>
> *Sent:* Monday, November 27, 2017 10:04 PM
>
>
> *To:* user@ignite.apache.org
> *Subject:* Re: Node unable to join cluster
>
>
>
> Sorry, I still don't understand, why you need an AddressResolver.
>
> Can
10:04 PM
To: user@ignite.apache.org
Subject: Re: Node unable to join cluster
Sorry, I still don't understand, why you need an AddressResolver.
Can't you specify all external IPs in configuration and don't use internal ones?
Denis
пн, 27 нояб. 2017 г. в 15:55, Jo
Spi discoverySpi = *new* TcpDiscoverySpi();
>
> discoverySpi.setLocalPort(1510);
>
> discoverySpi.setLocalPortRange(1);
>
> discoverySpi.setIpFinder(ipFinder);
>
> discoverySpi.setNetworkTimeout(2);
>
> discoverySpi.setN
7:13 PM
To: user@ignite.apache.org
Subject: Re: Node unable to join cluster
Josephine,
You should specify addresses in IP finder together with ports. So, it should be
like that:
String[] addresses = {“ 206.142.241.45:1510”};
Then discovery SPI will be able to find itself, and the node will start.
Do y
*maps*.put(*new* InetSocketAddress("10.131.12.16", 47500), F.
> *asList*(*new* InetSocketAddress("205.139.17.146", 30112)));
>
> }
>
>
>
> /** {@inheritDoc} */
>
> @Override *public* Collection
> getExternalAddresses(InetSocketAddress
tSocketAddress addr)
throws IgniteCheckedException {
return maps.get(addr);
}
}
From: Josephine Barboza
Sent: Wednesday, November 22, 2017 5:13 PM
To: user@ignite.apache.org
Subject: RE: Node unable to join cluster
Hi Denis,
After adding the localAddress in TcpDiscoverySpi, the node is s
IP in IPFinder.
What could be the issue here?
From: Denis Mekhanikov [mailto:dmekhani...@gmail.com]
Sent: Tuesday, November 21, 2017 6:15 PM
To: user@ignite.apache.org
Subject: Re: Node unable to join cluster
Hi Josephine!
Make sure, that TcpDiscoveryVmIpFinder has address of the local node on the
Hi Josephine!
Make sure, that TcpDiscoveryVmIpFinder has address of the local node on the
list.
Otherwise the first node won't be able to start, because discovery SPI
won't find any nodes.
Also note, that TcpDiscoverySpi has localAddress and localPort properties.
Try setting them according to you