我熟悉使用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 /中。所以事情显而易见了。
感谢和祝福
伊万
答案 0 :(得分:2)
我在R15B03上有同样的问题,relx 0.6.0
我注意到prim_inet
位于/path/to/erlang/lib/erts-[vsn]
(没有应用程序资源文件,因此无法指定为依赖项)但relx包含/path/to/erlang/erts-[vsn]
似乎是一个我们应该在relx问题跟踪器上报告它的错误。