我已经使用basho钢筋编译了我的Erlang应用程序,它制作了一个独立的escript可执行文件。我从命令行运行它,例如:
./myapp myconfig.config

我的问题是,如何确定运行我的应用程序的Erlang节点名称。在我的应用程序中运行“node()”命令时,默认情况下返回“nonode @ nohost”,但我想给该节点命名(例如[email protected]),所以当我运行“node()”时在我的应用程序中,我喜欢看到“[email protected]”而不是“nonode @ nohost”

我知道“erlang -name'[email protected]'”,但请考虑我从命令行运行该应用程序。我认为Erlang VM会在应用程序生存期内自动运行并终止。

最佳答案

最好的方法当然是通过“-sname node”或“-name node @ host”在命令行中设置nodename。
但是可以使用`net_kernel'模块来代替。它在http://www.erlang.org/doc/man/net_kernel.html中描述

$ erl
Erlang R15B01 (erts-5.9.1) [source] [64-bit] [smp:2:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.9.1  (abort with ^G)
1> node().
nonode@nohost
2> net_kernel:start([rumata, shortnames]).
{ok,<0.34.0>}
(rumata@rumata-osx)3> node().
'rumata@rumata-osx'
(rumata@rumata-osx)4> net_kernel:stop().
ok
5> node().
nonode@nohost
6> net_kernel:start(['rumata@myhost', longnames]).
{ok,<0.44.0>}
(rumata@myhost)7> node().
rumata@myhost

10-02 22:22