1

我熟悉使用 rebar 构建 erlang 版本。现在我正在尝试使用 relx 打包发布。

我用 erlang.mk 构建代码。我有一个 relx.config 列出了我要捆绑的应用程序。命令

./relx -o rel/myrel

成功。

但是,启动发布失败并崩溃:

cd rel
./myrel/bin/myrel console

Exec: /Users/ivan/tmp/rel/myrel/erts-5.9.2/bin/erlexec -boot /Users/ivan/tmp/rel/myrel/releases/1.0.0/myrel -env ERL_LIBS /Users/ivan/tmp/rel/myrel/releases/1.0.0/lib -config /Users/ivan/tmp/rel/myrel/releases/1.0.0/sys.config -args_file /Users/ivan/tmp/rel/myrel/releases/1.0.0/vm.args -- console
Root: /Users/ivan/tmp/rel/myrel
{error_logger,{{2014,2,4},{11,43,6}},supervisor_report,[{supervisor,{local,kernel_sup}},{errorContext,start_error},{reason,{'EXIT',{undef,[{prim_inet,open,[udp,inet],[]},{inet,open,7,[]},{inet_config,set_hostname,0,[]},{inet_config,init,0,[]},{inet_db,start_link,0,[]},{supervisor,do_start_child,2,[]},{supervisor,start_children,3,[]},{supervisor,init_children,2,[]}]}}},{offender,[{pid,undefined},{name,inet_db},{mfargs,{inet_db,start_link,[]}},{restart_type,permanent},{shutdown,2000},{child_type,worker}]}]}
{error_logger,{{2014,2,4},{11,43,6}},std_info,[{application,kernel},{exited,{shutdown,{kernel,start,[normal,[]]}}},{type,permanent}]}
{"Kernel pid terminated",application_controller,"{application_start_failure,kernel,{shutdown,{kernel,start,[normal,[]]}}}"}

Crash dump was written to: erl_crash.dump
Kernel pid terminated (application_controller) ({application_start_failure,kernel,{shutdown,{kernel,start,[normal,[]]}}})

看起来该版本找不到 prim_inet:open/2 - 要么是因为它的包含应用程序尚未启动,要么是因为它没有正确的路径。

我尝试在 relx.config 中列出 inets(和其他应用程序)。没有效果。

从 relx 日志中,它似乎知道我的 erlang 库(在 /usr/local/lib/erlang/lib 中)。

谁能帮我弄清楚我缺少什么以及如何使上述版本正常工作?

更新:没有创建上面的 ERL_LIBS 目录。同时,我指定的应用程序都在 myrel/lib/. 所以很明显有些事情发生了。

带着感谢和最美好的祝愿

伊万

4

1 回答 1

2

我在 R15B03 上遇到同样的问题,relx 0.6.0

我注意到它prim_inet被放置在/path/to/erlang/lib/erts-[vsn](它没有应用程序资源文件,因此不能指定为依赖项)但 relx 包括/path/to/erlang/erts-[vsn]

似乎是我们应该在 relx 问题跟踪器上报告的错误。

于 2014-02-04T16:11:52.923 回答