How can we run multiple akka nodes in a single pc? Currently, I've following in my application.conf
file. For each system, I added different port numbers, but, I can't start more than one instance. Error says, Address already in use failed to bind
.
application.conf
file
remotelookup {
include "common"
akka {
remote.server.port = 2500
cluster.nodename = "n1"
}
}
Update : multiple akka nodes means, I have different different stand alone server application, which will communicate to remote master node using akka.