1

リリース申請にrelxを使ってみました。Relxは問題なくそれを行いました。しかし、アプリケーションを起動すると、次のエラーが表示されます。

{"Kernel pid terminated",application_controller,"
{application_start_failure,iqServer,{bad_return,{{iqServer_app,start,[normal,[]]},  
{'EXIT',{undef,[{iqServer_app,start,[normal,[]],[]},
{application_master,start_it_old,4,[{file,\"application_master.erl\"},
{line,272}]}]}}}}}"}

エラーからわかるように、関数に問題がありますiqServer:start/2start/2そのように見えます:

-module(iqServer).
-behaviour(application).

-export([start/2, stop/1]).

start(_StartType, _StartArgs) ->
    Dispatch = dispatch_rules(),
    {ok, _} = cowboy:start_http(http_listener, 100, [
        {ip,{127,0,0,1}}, 
        {port, 6000}], [
        {env, [{dispatch, Dispatch}]}
    ]),
    iqServer_sup:start_link().

stop(_State) ->
    ok.

dispatch_rules() ->
    cowboy_router:compile([
        {'_', [
            {"/test/", cowboy_static, {file, "priv/index.html"}},
            {"/test/:group/:method", iqServer_test_handler, []}
        ]}
    ]).

以前は、次のコマンドでアプリケーションを起動しました。正常に動作erl -pa ebin deps/*/ebin -s iqServerしました。そして今、私はどこに問題があるのか​​ わかりません。

これは私の iqServer.app.src ファイルです:

{application, iqServer,
 [
  {description, "Test app"},
  {vsn, "0.1"},
  {registered, [iqServer]},
  {applications, [
                  kernel,
                  stdlib,
                  crypto,
                  cowlib,
                  ranch,
                  gproc,
                  cowboy
                 ]},
  {mod, { iqServer_app, []}},
  {modules, [
      iqServer,
      .....
      iqServer_sup,
      iqServer_tools
      ]}
 ]}.

メイクファイル:

PROJECT = iqServer

DEPS = cowboy sync gproc jsx epgsql
COMPILE_FIRST = iqServer_api_method
ERLC_OPTS = +debug_info
dep_cowboy = git https://github.com/ninenines/cowboy.git HEAD
dep_gproc = git git://github.com/esl/gproc.git HEAD
dep_jsx = git git://github.com/talentdeficit/jsx.git HEAD
dep_epgsql = git git://github.com/epgsql/epgsql.git HEAD

include erlang.mk

relx.config:

{release, {iqServer, "1"}, [iqServer]}.

{extended_start_script, true}.
{sys_config, "rel/sys.config"}.

{vm_args, "rel/vm.args"}.
4

1 に答える 1

2

アプリ ファイルには、次の行があります。

  {mod, { iqServer_app, []}},

つまり、アプリケーションの起動時に、モジュールstart/2内の関数を呼び出す必要があります。iqServer_appただし、アプリケーションのコールバック モジュールは と呼ばれiqServerます。アプリ ファイル内のモジュール名を変更するか、モジュールの名前を変更します。

于 2015-06-08T11:52:35.363 に答える