Hi,

I'm trying to connect two nodes together using akka-cluster and even if I
thought they were setup correctly, while trying to launch the application I
ran into connection problems.

[info] [WARN] [05/28/2014 16:50:09.017]
[ClusterSystem-akka.remote.default-remote-dispatcher-66] [Remoting] Tried
to associate with unreachable remote address
[akka.tcp://[email protected]:15672].  Address is now gated for
5000 ms, all messages to this address will be delivered to dead letters.
Reason: Connection refused: /10.xxx.xxx.xxx:15672

I have got two nodes and they are configured to talk to each other despite
the connection problem:

On node A:

akka {

  actor {

    provider = "akka.cluster.ClusterActorRefProvider"

  }

  remote {

    [*]

    netty.tcp {

      hostname = "10.yyy.yyy.yyy"

      port = 15699

    }

  }


  cluster {

    seed-nodes = ["akka.tcp://[email protected]:15672"]

  }

}


And on node B

akka {

  actor {

    provider = "akka.cluster.ClusterActorRefProvider"

  }

  remote {

    [*]

    netty.tcp {

      hostname = "10.xxx.xxx.xxx"

      port = 15672

    }

  }


  cluster {

    seed-nodes = ["akka.tcp://[email protected]: 15699"]

  }

}

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to