如何将模块发送到 Erlang 节点?

发布于 2024-08-20 04:07:45 字数 86 浏览 1 评论 0原文

我有几个节点在 erlang 集群中运行,每个节点都使用相同的 magic cookie 并且彼此信任。我想让一个主节点向其他节点发送代码和模块。我该怎么做?

I have several nodes running in an erlang cluster, each using the same magic cookie and trusted by each other. I want to have one master node send code and modules to the other nodes. How can I do this?

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

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

发布评论

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

评论(2

十雾 2024-08-27 04:07:45

使用 nl(module_name). 在所有节点上加载代码。

use nl(module_name). to load code on all the nodes.

余生共白头 2024-08-27 04:07:45

查看我的 etest 项目,了解以编程方式在所有节点上注入一组模块然后启动它的示例。

其核心几乎是以下代码:

{Mod, Bin, File} = code:get_object_code(Mod),
{_Replies, _} = rpc:multicall(Nodes, code, load_binary,
                              [Mod, File, Bin]),

Check out my etest project for an example of programmatically injecting a set of modules on all nodes and then starting it.

The core of this is pretty much the following code:

{Mod, Bin, File} = code:get_object_code(Mod),
{_Replies, _} = rpc:multicall(Nodes, code, load_binary,
                              [Mod, File, Bin]),
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文