Hi Petr, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to [email protected] and follow simple instructions in the reply.
petr.somek wrote > I have this problem. I have two servers which has public IP and is fully > accessible from internet. I have installed ignite 1.6 to both of them, ale > configure them to join to together. Everything is working well, and both > server work together in cloud. But now I'd like to join to this cloud my > PC which is connected to internet but doesn't have public IP. So from my > computer I can see both of servers, but server doesn't see my computer. Is > it possible to have compute grid from this three machines? You need to create an implementation of AddressResolver [1] and provide it in the configuration via IgniteConfiguration.setAddressResolver property. The resolver should map the private node address (the one behind NAT) to the public address of the router. This public address will be published by a node as one of his addresses, so that other nodes will be able to connect through the router. The router itself should have properly configured port forwarding. [1] https://ignite.apache.org/releases/1.7.0/javadoc/org/apache/ignite/configuration/AddressResolver.html -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Computing-grid-from-two-VPS-and-localhost-tp6920p7030.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
