erlang接入远程shell

两种方式

erl -name [email protected] -setcookie 111
erl -name [email protected] -setcookie 111

 

ctrl + g进入jcl模式

h查看帮助
r '[email protected]'
j查看job列表
c 2进入远程shell
如果返回,则重新ctrl+g

 

或者直接用-remsh参数进入远程shell

erl -name [email protected] -setcookie 111 -remsh '[email protected]'

 

注意,进入远程shell以后,不要直接q().退出,这个命令会让远程shell退出,建议ctrl+c退出

你可能感兴趣的:(erlang接入远程shell)