6

从另一个 Erlang shell 访问单个正在运行的 mnesia 节点以仅查看表中的数据的最佳做法是什么?

我尝试打开两个 shell 并将它们指向同一个 mnesia 目录位置,在文档中找到它后我意识到这是一个非常糟糕的主意。

-mnesia dir 目录。存储所有 Mnesia 数据的目录的名称。当前节点的目录名称必须是唯一的。在任何情况下,两个节点都不能共享同一个 Mnesia 目录。结果是完全不可预测的。

4

1 回答 1

1

我认为最简单的方法是加入远程外壳。只需从erl参数-remsh Node开始

$ erl -sname foo
Erlang R13B04 (erts-5.7.5) [source] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.7.5  (abort with ^G)
(foo@hynek-notebook)1> 

另一个终端:

$ erl -sname bar -remsh 'foo@hynek-notebook'
Erlang R13B04 (erts-5.7.5) [source] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.7.5  (abort with ^G)
(foo@hynek-notebook)1> 

另一种选择是使用erl(按^G)强大的作业控制功能

$ erl -sname bar
Erlang R13B04 (erts-5.7.5) [source] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.7.5  (abort with ^G)
(bar@hynek-notebook)1> 
User switch command
 --> h
  c [nn]            - connect to job
  i [nn]            - interrupt job
  k [nn]            - kill job
  j                 - list all jobs
  s [shell]         - start local shell
  r [node [shell]]  - start remote shell
  q        - quit erlang
  ? | h             - this message
 --> r 'foo@hynek-notebook'
 --> j
   1  {shell,start,[init]}
   2* {'foo@hynek-notebook',shell,start,[]}
 --> c 
Eshell V5.7.5  (abort with ^G)
(foo@hynek-notebook)1> 
User switch command
 --> j
   1  {shell,start,[init]}
   2* {'foo@hynek-notebook',shell,start,[]}
 --> c 1

(bar@hynek-notebook)1>

Note that you have to press Enter to show shell prompt if you are switching back to existing one.

于 2010-06-26T07:09:05.447 回答