有没有办法返回 Erlang 集群中节点的所有节点名称作为一个列表?
Is there a way to return all the node names of the nodes in an Erlang cluster as a list?
nodes() 应该可以工作。
nodes()
nodes() should work.
net_adm:names() 将返回当前节点上连接到 epmd 的节点。
net_adm:names()
另请参阅这个问题。
net_adm:names() will return you the nodes that are connected to epmd on the current node.
Also see this SO question.
您还可以通过节点(隐藏)连接到节点的隐藏节点。
You can also get the hidden nodes connected to a node via nodes(hidden).
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
nodes()
应该可以工作。nodes()
should work.net_adm:names()
将返回当前节点上连接到 epmd 的节点。另请参阅这个问题。
net_adm:names()
will return you the nodes that are connected to epmd on the current node.Also see this SO question.
您还可以通过节点(隐藏)连接到节点的隐藏节点。
You can also get the hidden nodes connected to a node via nodes(hidden).