Connect Nodes
An Erlang runtime system — node
is identified by a unique name like an email address. Erlang nodes communicate with each other via these names.
Start Erlang epmd
for registering node name first:
epmd -daemon
Start n1@127.0.0.1
on a Hamler REPL
console:
hamler repl
> import Control.Distributed.Node
> import Control.Distributed.NetKernel
> start :"n1@127.0.0.1"
Start n2@127.0.0.1
on another Hamler REPL
console, then connect to the n1@127.0.0.1
node:
hamler repl
> import Control.Distributed.Node
> import Control.Distributed.NetKernel
> start :"n2@127.0.0.1"
> connectNode :"n1@127.0.0.1"
true
> nodes
['n1@127.0.0.1']
当前内容版权归 hamler-lang 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 hamler-lang .