erlang 接入远程shell控制台

erlang shell是用户与 erlang 运行时系统交互的界面程序。事实上,erlang VM的运行不依赖任何shell,只要在启动的时候添加参数detached就可以脱离终端。

-detached

Starts the Erlang runtime system detached from the system console. Useful for running daemons and backgrounds processes. Implies -noinput.

实际上,detached 等效于noshell 加上 noinput。

# erl -detached -emu_args
Executing: /home/erl/lib/erlang/erts-5.10.3/bin/beam /home/erl/lib/erlang/erts-5.10.3/bin/beam -- -root /home/erl/lib/erlang -progname erl -- -home /root -- -noshell -noinput

另外,需要注意的是,windows不直接支持detached,而是以服务的形式在后台运行,见 erlsrv

现在讨论erlang 接入远程shell控制台的几种方式。

作业(JCL )模式

在 Erlang shell 中按下^G键,就可以看到作业控制模式(JCL mode)的菜单。在菜单中,有个选项能让我们连接到一个远程 shell。

先以detached运行一个节点1:

# erl -name [email protected] -setcookie 123456 -detached

检查这个erlang进程是否运行

# ps -ef | grep beam

root 20672 1 0 01:32 ? 00:00:00 /home/erl/lib/erlang/erts-5.10.3/bin/beam -- -root /home/erl/lib/erlang -progname erl -- -home /root -- -name [email protected] -setcookie 123456 -noshell -noinput

启动另外一个节点2,并接入到节点1


# erl -name [email protected] -setcookie 123456 
Erlang R16B02 (erts-5.10.3) [source] [64-bit] [async-threads:10] [hipe] [kernel-poll:false] 
Eshell V5.10.3 (abort with ^G) 
([email protected])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 ‘[email protected]‘ 
 --> j 
  1 {shell,start,[init]} 
  2* {‘[email protected]‘,shell,start,[]} 
 --> c 2 
Eshell V5.10.3 (abort with ^G) 
([email protected])1>

注意了,windows下要使用werl

连接到远程 shell 后,所有的终端输入解析操作都由本地 shell 完成,不过求值的工作是在远 程完成的。远程求值的结果输出全部被转发给本地 shell。

要退出 shell, 按^G回到 JCL 模式。 终端输入解析操作是在本地进行的, 因此通过^G q 的方式退出 shell  是安全的。

Eshell V5.10.3 (abort with ^G) 
([email protected])1> 
User switch command 
--> q

Remsh 模式

Remsh和 JCL 模式很类似,但是调用方式不同的机制。使用这种机制,JCL 模式的所有 操作步骤都可以被绕过,只需像下面这样启动 shell,对于长名字:

-remsh Node

Starts Erlang with a remote shell connected to Node.

以下方式启动节点2,将直接接入节点1控制台:

# erl -name [email protected] -setcookie 123456 -remsh [email protected]

Erlang R16B02 (erts-5.10.3) [source] [64-bit] [async-threads:10] [hipe] [kernel-poll:false]

Eshell V5.10.3  (abort with ^G)

([email protected])1> node().

‘[email protected]‘

这种方式和JCL很相像,本地也会启动一个erlang节点用于接入远程shell

SSH 模式

erlang自带了SSH的功能,我们可以很方便的开启SSH服务,对外提供远程 shell服务。 SSH的使用需要开启crypto,如果erlang显示以下错误,可以参考这篇文章

1> crypto:start().

** exception error: undefined function crypto:start/0

要使用该功能,通常需要先准备好具有远程访问 SSH 权限的 key,不过这里为了快速测试,可以这样做:

节点1启动ssh服务:

Eshell V5.10.3  (abort with ^G)

([email protected])1> ssh:start().

ok

([email protected])2> ssh:daemon(8888, [{password, "12345"}]).

{ok,<0.57.0>}

本地不需要启动erlang节点,直接使用ssh连接即可,输入以上设置的密码,就可以接入节点1的shell控制台。

# ssh -p 8888 [email protected]

The authenticity of host ‘[127.0.0.1]:8888 ([127.0.0.1]:8888)‘ can‘t be established.

RSA key fingerprint is ad:03:b4:6b:df:51:97:23:dc:47:cb:75:85:15:44:89.

Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added ‘[127.0.0.1]:8888‘ (RSA) to the list of known hosts.

[email protected]‘s password:

Eshell V5.10.3  (abort with ^G)

([email protected])1>

这种方式,erlang shell所有操作都是在远程节点完成的。

管道(pipe)模式

在使用管道(pipe)连接到一个Erlang节点时,和SSH一样不需要启动本地erlang节点。这种方法很少用,每次输出时都调用fsync,如果输出过多时,会有很大的性能损失。


具体做法为:用 run_erl 启动 erlang,相当于把 erlang 进程包在一个管道中:

# mkdir /tmp/erl_log

# cd /home/erl/bin

# ./run_erl -daemon /tmp/erl_pipe /tmp/erl_log "erl -name [email protected] -setcookie 123456"

其中,daemon 表示以后台进程运行,/tmp/erl_pipe是管道文件的名称,/tmp/erl_log指定了日志保存文件夹

然后使用 to_erl 程序来连接节点:

# ./to_erl /tmp/erl_pipe

Attaching to /tmp/erl_pipe (^D to exit) 
([email protected])1> node(). 
‘[email protected]‘

参考:http://blog.csdn.net/mycwq/article/details/43850735

https://s3.amazonaws.com/erlang-in-anger/text.v1.0.3.pdf

时间: 2024-10-12 07:34:42

erlang 接入远程shell控制台的相关文章

Java通过SSH2协议执行远程Shell脚本(ganymed-ssh2-build210.jar)

 该工具Jar包可在:http://download.csdn.net/detail/shenjianox/7769783及文档下载地址 ganymed-ssh2简介: Ganymed SSH-2 for Java是用纯Java实现SSH-2协议的一个包.在使用它的过程中非常容易,只需要指定合法的用户名口令, 或者授权认证文件,就可以创建到远程Linux主机的连接,在建立起来的会话中调用该Linux主机上的脚本文件,执行相关操作. 使用方法: 将 ganymed-ssh2-build210.

expect登陆远程shell

Expect是一个用来实现自动交互功能的软件套件(Expect [is a] software suite for automating interactive tools). Expect语言是基于Tcl的,作为一种脚本语言,Tcl具有简单的语法: cmd arg arg arg 一条Tcl命令由空格分割的单词组成.第一个单词是命令名称, 其余的是命令参数. 脚本代码如下: ############################################## #!/usr/bin/ex

【Telnet】使用Telnet协议连接到远程Shell执行脚本

介绍 本文介绍如何通过Telnet协议连接到远程Shell,执行脚本,并获取执行结果: 相关文章: <[Jsch]使用SSH协议连接到远程Shell执行脚本>http://www.cnblogs.com/ssslinppp/p/6244653.html 其他示例: http://commons.apache.org/proper/commons-net/examples/telnet/TelnetClientExample.java http://www.programcreek.com/ja

Mysql shell 控制台---mysqlsh

原创 2016-07-12 杜亦舒 性能与架构 以前登录Mysql的控制台后,使用SQL语言来操作数据库,如 mysql> select * from tablename; Mysql 5.7.12 之后有了比较大的变化,支持了JSON文档的操作,同时也提供了全新的数据库操作方式,现在可以不需要SQL的知识,以非常自然的代码方式操作数据库,例如 db.news.insert("create_date", "title") .values("2016-

使用远程shell工具SSH登录Linux主机,输完用户名回车后就卡住,10秒后才提示输入密码

使用远程shell工具SSH登录Linux主机,输完用户名回车后就卡住,10秒后才提示输入密码. 使用wireshark抓全过程包 因为ssh是加密了的协议,所以弄不懂里面内容是正常的,但可以加以过滤. 过滤栏:SSH 找到时间间隔大概为10s的NO.是x到y 过滤栏:frame.number>x&&frame.number<y 观察得出此处是DNS查询行为 原因:Linux服务器在收到SSH访问请求时,先会查询该客户端IP对应的PTR记录.假如经过5s没有收到回复,就再次发一

远程shell脚本执行工具类

/** * 远程shell脚本执行工具类 */public class RemoteShellExecutorUtils { private static final Logger logger = LoggerFactory.getLogger(RemoteShellExecutorUtils.class); private Connection conn; /** * 服务器IP */ private String ip; /** * 用户名 */ private String user;

【原】Java程序调用远程Shell脚本

此程序的目的是执行远程机器上的Shell脚本. [环境参数]远程机器IP:192.168.234.123用户名:root密码:rootShell脚本的路径:/home/IFileGenTool /BakProvisionAndOccurEntrance.sh [具体步骤]1.在远程机器上,准备Shell脚本.[[email protected] IFileGenTool]# vim ./load_data.sh 1 #!/bin/sh 2 source /etc/profile 3 dbName

erlang学习笔记(shell命令)

erlang shell 命令: help(). 可以查看erlang shell内置命令. 比如:m(Mod),可以查看模块Mod. 待续..

在Jenkins中配置执行远程shell命令

用过Jenkins的都知道,在Build配置那里有一个Add buld step, 有这样两个选项: 1. Execute Windows batch command 2. Execute shell 第1个是执行windows命令,第2个是执行shell脚本. 一开始我以为不管jenkins安装在windows下还是linux下都可以执行windows命令和linux命令,但是后来我发现在windows中,是可以执行第1个的,但是用第2个选项执行shell会失败,会报错说不能执行sh. 我想第