连接erlang remote shell的几种方式方法
启动a shell
1 | $ erl -name a@127.0.0.1 -setcookie abc |
启动b shell后通过JCM(Job Control Mode)远程连接a shell
1 | $ erl -name b@127.0.0.1 -setcookie abc |
通过命令行参数remsh直接连接a shell
1 | $ erl -name b@127.0.0.1 -setcookie abc -remsh a@127.0.0.1 |
增加-hidden命令行参数避免出现在nodes()函数的返回值里, 同时避免自动连接到整个集群上
1 | $ erl -name b@127.0.0.1 -setcookie abc -remsh a@127.0.0.1 -hidden |