Skip to content

Instantly share code, notes, and snippets.

@longcao
Last active December 31, 2015 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save longcao/8051088 to your computer and use it in GitHub Desktop.
Save longcao/8051088 to your computer and use it in GitHub Desktop.
client and server conf
# 'client' conf
akka {
actor {
provider = "akka.remote.RemoteActorRefProvider"
}
remote {
enabled-transports = ["akka.remote.netty.tcp"]
netty.tcp {
hostname = "127.0.0.1"
port = 2553
}
}
}
# 'server' conf
akka {
actor {
provider = "akka.remote.RemoteActorRefProvider"
}
remote {
enabled-transports = ["akka.remote.netty.tcp"]
netty.tcp {
hostname = "127.0.0.1"
port = 2552
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment