Erlang ping 节点问题

发布于 2024-10-30 04:58:47 字数 194 浏览 0 评论 0原文

我在 erlang shell 中做了:

1> node().
nonode@nohost

但是

2> net_adm:ping(node()). 
pang

为什么呢?有什么问题吗?为什么不打乒乓球?

谢谢。

I made in erlang shell:

1> node().
nonode@nohost

But

2> net_adm:ping(node()). 
pang

Why? What's problem? Why not pong?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无力看清 2024-11-06 04:58:47

您没有使用 -name-sname 启动 Erlang,这意味着分发子系统尚未启动。试试这个:

$ erl -sname mynode
Erlang R14B02 (erts-5.8.3) [source] [64-bit] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.8.3  (abort with ^G)
(mynode@foobar)1> node().
mynode@foobar
(mynode@foobar)2> net_adm:ping(node()).
pong

You didn't start Erlang with -name or -sname, which means that the distribution subsystem was not started. Try this:

$ erl -sname mynode
Erlang R14B02 (erts-5.8.3) [source] [64-bit] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.8.3  (abort with ^G)
(mynode@foobar)1> node().
mynode@foobar
(mynode@foobar)2> net_adm:ping(node()).
pong
甜扑 2024-11-06 04:58:47

我不是 100% 确定,但是您在没有“-name”或“-sname”的情况下启动了 erl。我相信 net_adm:ping/1 仅适用于分布式模式。

I am not 100% sure, but You started erl without "-name" oder "-sname". I believe net_adm:ping/1 only works in a distributed mode.

油焖大侠 2024-11-06 04:58:47

如果您尝试 ping 一个 erlang 节点但收到 pang

使用 erlang:get_cookie() 检查 cookie,它将是一些随机字符串,使用 erlang:set_cookie(Node, Cookie) 设置另一个节点的 cookie,或者您可以传递 cookie以标志 -setcookie

为例:

(foo@earth) erlang:get_cookie().
ASYRQKVNIFHWIIJQZIYN

(foo@earth) erlang:set_cookie(node(), 'secret cookie'). 
true 

net:ping('mongooseim@localhost').
pong

查看 docs

If you are trying to ping an erlang node but getting a pang.

Check the cookie with erlang:get_cookie() it will be some random string set the cookie of another node with erlang:set_cookie(Node, Cookie) or you could pass the cookie to the flag -setcookie

for example:

(foo@earth) erlang:get_cookie().
ASYRQKVNIFHWIIJQZIYN

(foo@earth) erlang:set_cookie(node(), 'secret cookie'). 
true 

net:ping('mongooseim@localhost').
pong

Check out the docs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文