I am using apache-ignite-fabric-1.5.0.final-bin to setup my development
cluster.
On DigitalOcean, I created two droplets, added the static IPs to the
configuration. The two droplets can connect to each other and are working
just fine, but I can't get my home machine to connect to them as a third
node. I opened up a port and set it in the config ("<property
name="localPort" value="27509"/> inside TcpDiscoverySpi bean"), but the home
node only connects then disconnects right after.
I edited the example.default.xml
Home computer:
<property name="discoverySpi">
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="localPort" value="27509"/>
<property name="ipFinder">
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder">
<property name="addresses">
<list>
<value>127.0.0.1:47500..47509</value>
<value>Droplet1-IP</value>
<value>Droplet2-IP</value>
<value>HomeComputerIp:27509</value>
</list>
</property>
</bean>
</property>
</bean>
</property>
The droplet's config files are the same, just without the "<property
name="localPort" value="27509"/>" row. If I start all the nodes:
my home says: Topology snapshot [ver=1, servers=1, clients=0, CPUs=4,
heap=1.0GB]
one of the droplets: Topology snapshot [ver=2, servers=2, clients=0, CPUs=2,
heap=1.0GB]
the droplets ar 2x512m, home is 1x1g
So, they are not connecting to each other. What am I missing? Thank you for
your help!
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Local-machine-won-t-connect-to-grid-tp3210.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.