标签:
epmd,是erlang集群节点间端口映射的守护进程,负责维护集群内的节点连接,提供节点名称到IP地址及端口的解析服务。epmd -daemon -port 5000 |
erl -name hello@127.0.0.1 -epmd "epmd -port 5000 -daemon" |
C:\>set ERL_EPMD_PORT=5000 C:\>erl -name hello@127.0.0.1 |
ERL_EPMD_PORT=5000 erl -name hello@127.0.0.1 |
epmd -port 5000 -address 127.0.0.1 -daemon |
epmd -kill |
标签:
原文地址:http://blog.csdn.net/mycwq/article/details/46630743