Rebar3 +牛仔内核PID终止

Rebar3 +牛仔内核PID终止

问题描述:

我安装rebar3并且创造Rebar3 +牛仔内核PID终止

cd ~/apps rebar3 new release tunnel

然后

我复制我的src文件从~/tunnel/src/*~/apps/tunnel/src/

一个新的版本我遇到了一个编译与rebar3 run错误,并找到Erlang "Kernel pid terminated" error作为一种可能的解决方案。我将关于tunnel_app的所有内容重命名为tunnel。所以我的src包含tunnel.erl,tunnel.app.srctunnel_sup.erl。我根据需要重新命名了模块定义。

这里的rebar3 run错误:

~/apps/tunnel:.rebar3 run 
===> Verifying dependencies... 
===> Compiling tunnel 
===> Starting relx build process ... 
===> Resolving OTP Applications from directories: 
      /Users/quantum/apps/tunnel/_build/default/lib 
      /Users/quantum/apps/tunnel/apps 
      /usr/local/Cellar/erlang/19.2/lib/erlang/lib 
      /Users/quantum/apps/tunnel/_build/default/rel 
===> Resolved tunnel-0.1.0 
===> Dev mode enabled, release will be symlinked 
===> release successfully created! 
readlink: illegal option -- f 
usage: readlink [-n] [file ...] 
Exec: /usr/local/Cellar/erlang/19.2/lib/erlang/erts-8.2/bin/erlexec -boot /Users/quantum/apps/tunnel/_build/default/rel/tunnel/releases/0.1.0/tunnel -mode embedded -boot_var ERTS_LIB_DIR /usr/local/Cellar/erlang/19.2/lib/erlang/lib -config /Users/quantum/apps/tunnel/_build/default/rel/tunnel/releases/0.1.0/sys.config -args_file /Users/quantum/apps/tunnel/_build/default/rel/tunnel/releases/0.1.0/vm.args -pa -- console 
Root: /Users/quantum/apps/tunnel/_build/default/rel/tunnel 
/Users/quantum/apps/tunnel/_build/default/rel/tunnel 
Erlang/OTP 19 [erts-8.2] [source] [64-bit] [smp:8:8] [async-threads:30] [hipe] [kernel-poll:true] [dtrace] 


=INFO REPORT==== 16-Feb-2017::15:02:21 === 
    application: tunnel 
    exited: {bad_return, 
       {{tunnel,start,[normal,[]]}, 
       {'EXIT', 
        {undef, 
         [{cowboy_router,compile, 
           [[{'_', 
            [{"/info",lobby_handler,[]}, 
            {"/join/:name",join_handler,[]}, 
            {"/play/:table_pid/:name/:auth/:team/:action/:x/:y", 
             play_handler,[]}]}]], 
           []}, 
          {tunnel,start,2, 
           [{file, 
            "/Users/quantum/apps/tunnel/_build/default/lib/tunnel/src/tunnel.erl"}, 
           {line,8}]}, 
          {application_master,start_it_old,4, 
           [{file,"application_master.erl"}, 
           {line,273}]}]}}}} 
    type: permanent 
{"Kernel pid terminated",application_controller,"{application_start_failure,tunnel,{bad_return,{{tunnel,start,[normal,[]]},{'EXIT',{undef,[{cowboy_router,compile,[[{'_',[{\"/info\",lobby_handler,[]},{\"/join/:name\",join_handler,[]},{\"/play/:table_pid/:name/:auth/:team/:action/:x/:y\",play_handler,[]}]}]],[]},{tunnel,start,2,[{file,\"/Users/quantum/apps/tunnel/_build/default/lib/tunnel/src/tunnel.erl\"},{line,8}]},{application_master,start_it_old,4,[{file,\"application_master.erl\"},{line,273}]}]}}}}}"} 
Kernel pid terminated (application_controller) ({application_start_failure,tunnel,{bad_return,{{tunnel,start,[normal,[]]},{'EXIT',{undef,[{cowboy_router,compile,[[{'_',[{"/info",lobby_handler,[]},{"/j 

Crash dump is being written 

这是为什么崩溃?

+0

你为什么要SRC文件复制从〜/隧道/ src目录/ *到〜/应用/隧道/ src目录/? – byaruhaf

+0

@byaruhaf我在〜/ tunnel/src中已经有了我的项目src文件。 – quantumpotato

如果这是你与rebar3第一次的经验,我建议从一个OTP应用程序,而不是一个OTP版本:

rebar3 new app tunnel 

,然后不要盲目在源文件,因为你可能在覆盖这些文件复制已在src以下为您创建。事先查看该目录的内容。

我也建议花时间阅读rebar3 https://www.rebar3.org/docs/basic-usage页面。

您还必须阅读有关OTP应用程序的内容。我知道,相当多的理解,有时令人困惑。免费来源是http://learnyousomeerlang.com/building-applications-with-otp。购买关于Erlang的书也是值得的。有几个,我建议https://www.manning.com/books/erlang-and-otp-in-action

还有一个在线课程,免费,启动几天(2017年2月20日)https://www.mooc-list.com/course/functional-programming-erlang-futurelearn

+0

谢谢!我在https://gist.github.com/flbuddymooreiv/ce1d7a47b12c27bf1616。在LearnYouSomeErlang中,我是其中的几个章节,感谢您指出了这一点。我会看看课程和RTFM =) – quantumpotato

+0

啊我看到'rebar3 release'使多个应用程序可用与应用程序只是一个src目录 – quantumpotato