我尝试在ranch example中添加appmon,这是我的relx.config文件
{paths, ["/usr/local/lib"]}.
{release, {tcp_echo_example, "1"}, [
tcp_echo,
appmon
]}.
{extended_start_script, true}.
生成后,我启动应用程序成功但在Erlang控制台中启动appmon失败
(tcp_echo_example@127.0.0.1)3> application:start(appmon).
{error,{already_started,appmon}}
看起来appmon已经开始,但我怎么能看到appmon窗口?
Erlang:R16B02
relx:1.0.2
答案 0 :(得分:0)
Appmon已经启动,无需再次启动。
您也可以使用:
%% OTP >= R16B01
ok = application:ensure_started(App)
或类似
case application:start(App) of
ok -> ok;
{error, {already_started, App}} -> ok
end
确保运行应用程序。