在发布Erlang应用程序时不会创建数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在发布Erlang应用程序时不会创建数据库相关的知识,希望对你有一定的参考价值。
我创建了一个Erlang应用程序,一个小的calendar_server。哪些插入事件,检索它们以及编辑和删除事件。它在提示符上运行时正常工作(使用erl)。我插入了事件(生日,会议等),然后在目录上创建了数据库(Mnesia.nonode@nohost)。并且可以检索事件。但是当使用rebar / rebar3创建相同的应用程序时,不会创建任何数据库。我真的很想知道我遇到了什么问题,或者我做了什么错误。
reltool.config和calendarApp.app.src如下所示。
reltool.config
{sys, [
{lib_dirs, ["../apps"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "calendarApp", "1",
[
kernel,
stdlib,
sasl,
mnesia,
calendarApp
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "calendarApp"},
{profile, embedded},
{incl_cond, exclude},
{excl_archive_filters, [".*"]}, %% Do not archive built libs
{excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)",
"^erts.*/(doc|info|include|lib|man|src)"]},
{excl_app_filters, [".gitignore"]},
{app, sasl, [{incl_cond, include}]},
{app, stdlib, [{incl_cond, include}]},
{app, kernel, [{incl_cond, include}]},
{app, mnesia, [{incl_cond, include}]},
{app, calendarApp, [{incl_cond, include}]}
]}.
{target_dir, "calendarApp"}.
{overlay, [
{mkdir, "log/sasl"},
{copy, "files/erl", "{{erts_vsn}}/bin/erl"},
{copy, "files/nodetool", "{{erts_vsn}}/bin/nodetool"},
{copy, "files/calendarApp", "bin/calendarApp"},
{copy, "files/calendarApp.cmd", "bin/calendarApp.cmd"},
{copy, "files/start_erl.cmd", "bin/start_erl.cmd"},
{copy, "files/install_upgrade.escript", "bin/install_upgrade.escript"},
{copy, "files/sys.config", "releases/{{rel_vsn}}/sys.config"},
{copy, "files/vm.args", "releases/{{rel_vsn}}/vm.args"}
]}.
calendarApp.app.src
{application, calendarApp,
[
{description, ""},
{vsn, "1"},
{registered, []},
{applications, [
kernel,
stdlib,
mnesia
]},
{mod, { calendarApp_app, []}},
{env, []}
]}.
如果有人知道为什么没有创建数据库,请帮我找出我的错误。
要创建基于光盘的Mnesia,您可以使用mnesia:create_schema/1
函数(我认为您在代码中的某处)。此功能需要停止Mnesia。
在你的reltool.config
中,你在mnesia
应用程序之前指定了calendarApp
应用程序,这是你可能创建基于mnesia光盘的模式的地方。这意味着在创建模式之前启动了mnesia,因此无法创建模式。
如果你在mnesia
文件中的calendarApp
键下改变rel
和reltool.config
的顺序,那么一切都应该是正确的。
{sys, [
{lib_dirs, ["../apps"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "calendarApp", "1",
[
kernel,
stdlib,
sasl,
calendarApp,
mnesia
]},
...
是的,我首先启动了myApp(dumperl_sync):
{relx, [{release, { dumperl_sync, "0.1.0" },
[dumperl_sync,
sasl,
mnesia
]},
...
}.
然后,在应用程序行为中:
start(_Application, _Type) ->
application:set_env(mnesia, dir,"/path/to/Mnesia.node"),
mnesia:create_schema([node()])
...
end.
然后,在handle_info里面的gen_server行为中:
handle_info(_, State) ->
mnesia:start(),
mnesia:create_table(dates,
[
{disc_only_copies, [node()]},
{attributes,record_info(fields, dates)}
]
)
....
{noreply, State}.
日期是一个记录:
-record(dates,{}).
一切都应该是正确的!
以上是关于在发布Erlang应用程序时不会创建数据库的主要内容,如果未能解决你的问题,请参考以下文章
获取 badarith,[erlang,'+',[error,0],[],同时使用 Erlang 片段在 TSUNG 中执行算术运算
如何在Elixir或Erlang中在运行时动态创建和加载模块?