gpt4 book ai didi

erlang - 连接到远程节点

转载 作者:行者123 更新时间:2023-12-01 15:24:27 49 4
gpt4 key购买 nike

我在一台远程机器上,它有一个正在运行的 Erlang VM 节点。我正在尝试通过 iex 连接到 Erlang VM 节点,但返回错误:

$ iex --name testing@127.0.0.1 --remsh myapp@127.0.0.1 --setcookie NMFJGSU0FwvGKlrqMuGfY1I6LtgSz1Rn2PLiDnqMS54
Erlang/OTP 18 [erts-7.3.1] [source] [64-bit] [async-threads:10] [kernel-poll:false]

Could not contact remote node myapp@127.0.0.1, reason: :nodedown. Aborting...
$
epmd -names 报告 Erlang VM 节点正在运行:
$ epmd -names
epmd: up and running on port 4369 with data:
name myapp at port 45671
$

这是已部署应用程序的 vm.args 的内容:
-name myapp@127.0.0.1
-setcookie NMFJGSU0FwvGKlrqMuGfY1I6LtgSz1Rn2PLiDnqMS54=
-smp auto

问题: 我做错了什么?

最佳答案

您需要将相同的 cookie 传递给 iexvm.args 中的那个:

iex --name testing@127.0.0.1 --remsh myapp@127.0.0.1 --cookie NMFJGSU0FwvGKlrqMuGfY1I6LtgSz1Rn2PLiDnqMS54=

如果 cookie 不正确,您将收到 :nodedown错误。

来自 shell 牌 #1:
$ iex --cookie foo --name foo@127.0.0.1

来自 shell 牌 #2:
$ iex --name bar@localhost --remsh foo@127.0.0.1
Erlang/OTP 19 [erts-8.1] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Could not contact remote node foo@127.0.0.1, reason: :nodedown. Aborting...
$ iex --name bar@localhost --remsh foo@127.0.0.1 --cookie foo
Erlang/OTP 19 [erts-8.1] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Interactive Elixir (1.3.4) - press Ctrl+C to exit (type h() ENTER for help)
iex(foo@127.0.0.1)1>

关于erlang - 连接到远程节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40427503/

49 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com