一、实现远程执行

此程序的目的是执行远程机器上的Shell脚本。

【环境参数】

远程机器IP:192.168.243.21

用户名:user

密码:password

命令:python /data/applogs/bd-job/jobhandler/gluesource/employee.py

【具体步骤】

1、导入需要依赖的jar包。

ch.ethz.ganymed

ganymed-ssh2

262

commons-io

commons-io

2.5

2、编写RemoteShellExecutor工具类。

package com.vicente.vicenteboot.test;

import java.io.*;

import java.nio.charset.Charset;

import ch.ethz.ssh2.ChannelCondition;

import ch.ethz.ssh2.Connection;

import ch.ethz.ssh2.Session;

import ch.ethz.ssh2.StreamGobbler;

import org.apache.commons.io.IOUtils;

public class RemoteShellExecutor {

private Connection conn;

/** 远程机器IP */

private String ip;

/** 用户名 */

private String osUsername;

/** 密码 */

private String password;

private String charset = Charset.defaultCharset().toString();

private static final int TIME_OUT = 1000 * 5 * 60;

public RemoteShellExecutor(String ip, String usr, String pasword) {

this.ip = ip;

this.osUsername = usr;

this.password = pasword;

}

/**

* 登录

* @return

* @throws IOException

*/

private boolean login() throws IOException {

conn = new Connection(ip);

conn.connect();

return conn.authenticateWithPassword(osUsername, password);

}

/**

* 执行脚本

*

* @param cmds

* @return

* @throws Exception

*/

public int exec(String cmds) throws Exception {

InputStream stdOut = null;

InputStream stdErr = null;

String outStr = "";

String outErr = "";

int ret = -1;

try {

if (login()) {

// Open a new {@link Session} on this connection

Session session = conn.openSession();

// Execute a command on the remote machine.

session.execCommand(cmds);

stdOut = new StreamGobbler(session.getStdout());

outStr = processStream(stdOut, charset);

stdErr = new StreamGobbler(session.getStderr());

outErr = processStream(stdErr, charset);

session.waitForCondition(ChannelCondition.EXIT_STATUS, TIME_OUT);

System.out.println("outStr=" + outStr);

System.out.println("outErr=" + outErr);

ret = session.getExitStatus();

} else {

throw new Exception("登录远程机器失败" + ip); // 自定义异常类 实现略

}

} finally {

if (conn != null) {

conn.close();

}

IOUtils.closeQuietly(stdOut);

IOUtils.closeQuietly(stdErr);

}

return ret;

}

private String processStream(InputStream in, String charset) throws Exception {

byte[] buf = new byte[1024];

StringBuilder sb = new StringBuilder();

while (in.read(buf) != -1) {

sb.append(new String(buf, charset));

}

return sb.toString();

}

public static void main(String args[]) throws Exception {

RemoteShellExecutor executor = new RemoteShellExecutor("192.168.243.21", "domp", "bluemoon2016#");

// 执行myTest.sh 参数为java Know dummy

System.out.println(executor.exec2("python /data/bluemoon/kettle/runScript/ods/fact_org_employee.py "));

}

}

3、运行结果

备份数据成功。

4、说明:

0 // getExitStatus方法的返回值

注:一般情况下shell脚本正常执行完毕,getExitStatus方法返回0。

此方法通过远程命令取得Exit Code/status。但并不是每个server设计时都会返回这个值,如果没有则会返回null。

二、ganymed-ssh讲解:

Jar包:ganymed-ssh2-build210.jar

步骤:

a) 连接:

Connection conn = new Connection(ipAddr);

conn.connect();

b)认证:

boolean authenticateVal = conn.authenticateWithPassword(userName, password);

​ c) 打开一个Session:

if(authenticateVal)

Session session = conn.openSession();

d) 执行Shell命令:

1)若是执行简单的Shell命令:(如 jps 、last 这样的命令 )

session.execCommand(cmd);

2) 遇到问题:

用方法execCommand执行Shell命令的时候,会遇到获取不全环境变量的问题,

比如执行 hadoop fs -ls 可能会报找不到hadoop 命令的异常

试着用execCommand执行打印环境变量信息的时候,输出的环境变量不完整

与Linux主机建立连接的时候会默认读取环境变量等信息

可能是因为session刚刚建立还没有读取完默认信息的时候,execCommand就执行了Shell命令

解决:

所以换了另外一种方式来执行Shell命令:

// 建立虚拟终端

session.requestPTY("bash");

// 打开一个Shell

session.startShell();

// 准备输入命令

PrintWriter out = new PrintWriter(session.getStdin());

// 输入待执行命令

out.println(cmd);

out.println("exit")

// 6. 关闭输入流

out.close();

// 7. 等待,除非1.连接关闭;2.输出数据传送完毕;3.进程状态为退出;4.超时

session.waitForCondition(ChannelCondition.CLOSED | ChannelCondition.EOF | ChannelCondition.EXIT_STATUS , 30000);

用这种方式执行Shell命令,会避免环境变量读取不全的问题,第7步里有许多标识可以用,比如当exit命令执行后或者超过了timeout时间,则session关闭

这里需要注意,当一个Shell命令执行时间过长时,会遇到ssh连接超时的问题,

解决办法:

1. 之前通过把Linux主机的sshd_config的参数ClientAliveInterval设为60,同时将第7步中timeout时间设置很大,来保证命令执行完毕,

因为是执行Mahout中一个聚类算法,耗时最少7、8分钟,数据量大的话,需要几个小时。

2. 后来将命令改成了nohup的方式执行,nohup hadoop jar .... >> XXX.log && touch XXX.log.end &

这种方式是提交到后台执行,即使当前连接断开也会继续执行,把命令的输出结果写入日志,如果hadoop命令执行成功,则生成.end文件

获取文件的方法 ganymed-ssh2-build210.jar 也提供了,如下

SCPClient scpClient = con.createSCPClient();

scpClient.get("remoteFiles","localDirectory"); //从远程获取文件

e) 获取Shell命令执行结果:

InputStream stderr = new StreamGobbler(session.getStderr());

InputStream in = new StreamGobbler(session.getStdout());

获取流中的数据:

private String processStdErr(InputStream in, String charset)

throws IOException {

BufferedReader br = new BufferedReader(new InputStreamReader(in, charset));

StringBuffer sb = new StringBuffer();

if (in.available() != 0) {

while (true) {

String line = br.readLine();

if (line == null)

break;

sb.append(line).append(System.getProperty("line.separator"));

}

}

return sb.toString();

}

三、使用实

1、使用session.execCommand(cmds);来执行命令会出现一个问题,就是还没有加载完成服务器的环境变量就开始执行命令了

这导致了很多情况是找不到命令,解决的办法就是:

/**

* 执行脚本

*

* @param cmds

* @return

* @throws Exception

*/

public int exec2(String cmds) throws Exception {

InputStream stdOut = null;

InputStream stdErr = null;

String outStr = "";

String outErr = "";

int ret = -1;

try {

if (login()) {

Session session = conn.openSession();

// 建立虚拟终端

session.requestPTY("bash");

// 打开一个Shell

session.startShell();

stdOut = new StreamGobbler(session.getStdout());

stdErr = new StreamGobbler(session.getStderr());

BufferedReader stdoutReader = new BufferedReader(new InputStreamReader(stdOut));

BufferedReader stderrReader = new BufferedReader(new InputStreamReader(stdErr));

// 准备输入命令

PrintWriter out = new PrintWriter(session.getStdin());

// 输入待执行命令

out.println(cmds);

out.println("exit");

// 6. 关闭输入流

out.close();

// 7. 等待,除非1.连接关闭;2.输出数据传送完毕;3.进程状态为退出;4.超时

session.waitForCondition(ChannelCondition.CLOSED | ChannelCondition.EOF | ChannelCondition.EXIT_STATUS , 30000);

System.out.println("Here is the output from stdout:");

while (true)

{

String line = stdoutReader.readLine();

if (line == null)

break;

System.out.println(line);

}

System.out.println("Here is the output from stderr:");

while (true)

{

String line = stderrReader.readLine();

if (line == null)

break;

System.out.println(line);

}

/* Show exit status, if available (otherwise "null") */

System.out.println("ExitCode: " + session.getExitStatus());

ret = session.getExitStatus();

session.close();/* Close this session */

conn.close();/* Close the connection */

} else {

throw new Exception("登录远程机器失败" + ip); // 自定义异常类 实现略

}

} finally {

if (conn != null) {

conn.close();

}

IOUtils.closeQuietly(stdOut);

IOUtils.closeQuietly(stdErr);

}

return ret;

}

2、scp复制一个文件到服务器上

/**

* 远程传输单个文件

*

* @param localFile

* @param remoteTargetDirectory

* @throws IOException

*/

public void transferFile(String localFile, String remoteTargetDirectory) throws IOException {

File file = new File(localFile);

if (file.isDirectory()) {

throw new RuntimeException(localFile + " is not a file");

}

String fileName = file.getName();

execCommand("mkdir -p " + remoteTargetDirectory);

SCPClient sCPClient = connection.createSCPClient();

SCPOutputStream scpOutputStream = sCPClient.put(fileName, file.length(), remoteTargetDirectory, "0600");

String content = IOUtils.toString(new FileInputStream(file),StandardCharsets.UTF_8);

scpOutputStream.write(content.getBytes());

scpOutputStream.flush();

scpOutputStream.close();

}

/**

* 传输整个目录

*

* @param localDirectory

* @param remoteTargetDirectory

* @throws IOException

*/

public void transferDirectory(String localDirectory, String remoteTargetDirectory) throws IOException {

File dir = new File(localDirectory);

if (!dir.isDirectory()) {

throw new RuntimeException(localDirectory + " is not directory");

}

String[] files = dir.list();

for (String file : files) {

if (file.startsWith(".")) {

continue;

}

String fullName = localDirectory + "/" + file;

if (new File(fullName).isDirectory()) {

String rdir = remoteTargetDirectory + "/" + file;

execCommand("mkdir -p " + remoteTargetDirectory + "/" + file);

transferDirectory(fullName, rdir);

} else {

transferFile(fullName, remoteTargetDirectory);

}

}

}

使用:

public static void main(String[] args) throws IOException {

SSHAgent sshAgent = new SSHAgent();

sshAgent.initSession("192.168.243.21", "user", "password#");

sshAgent.transferFile("C:\\data\\applogs\\bd-job\\jobhandler\\2020-03-07\\483577870267060231.log","/data/applogs/bd-job/jobhandler/2018-09-13");

sshAgent.close();

}

java ganymed ssh2_java 远程执行Shell命令-通过ganymed-ssh2连接相关推荐

  1. java使用ganymed-ssh2远程执行shell命令

    先上依赖 <!-- https://mvnrepository.com/artifact/ch.ethz.ganymed/ganymed-ssh2 --> <dependency&g ...

  2. linux远程执行shell命令行,linux shell 远程执行命令--ftp

    linux shell 远程执行命令--ftp 2018-12-07 ftp有很多命令,熟悉这些命令你能大大的提高工作效率: FTP命令行格式为: ftp -v -d -i -n -g [主机名] , ...

  3. Python ssh 远程执行shell命令

    #工具 python paramiko #远程执行命令 import paramikossh = paramiko.SSHClient() key = paramiko.AutoAddPolicy() ...

  4. 批量远程执行shell命令工具

    使用示例(使用了默认用户root,和默认端口号22): ./mooon_ssh --h=192.168.4.1,192.168.4.2 -P=password -c='cat /etc/hosts' ...

  5. Ganymed-ssh2实现scp上传和下载文件,以及执行shell命令

    使用Ganymed-ssh2执行远程机器上的Shell脚本,还可以使用SCP来上传和下载文件 严禁转载!!! pom依赖 <dependency><groupId>com.ai ...

  6. python中command是什么意思_python中command执行shell命令脚本方法

    在Python中有一个模块commands也很容易做到以上的效果. 看一下三个函数: 1). commands.getstatusoutput(cmd) 用os.popen()执行命令cmd, 然后返 ...

  7. jenkins 执行shell命令 command not found,make: *** [build] Error 127 解决办法

    本地执行shell命令成功,Jenkins 远程执行 shell命令有时 提示命令找不到,或者make的时候报错. 因为Jenkins执行shell时无法获取环境变量的原因导致 解决办法在shell脚 ...

  8. java 远程shell脚本_java通过ssh连接服务器执行shell命令详解及实例

    java通过ssh连接服务器执行shell命令详解 java通过ssh连接服务器执行shell命令:JSch 是SSH2的一个纯Java实现.它允许你连接到一个sshd 服务器,使用端口转发,X11转 ...

  9. JSch连接不上Linux服务器,windows 下 java程序jsch连接远程linux服务器执行shell命令

    java远程连接服务的shell需要使用SSH的登录方式,可以使用JSch技术.JSch 是SSH2的一个纯Java实现.它允许你连接到一个sshd 服务器,使用端口转发,X11转发,文件传输等等. ...

最新文章

  1. java api 框架_java常用对象API之集合框架
  2. JavaScript词法作用域的简单介绍
  3. 怎样把 Boot Camp 里 Windows 的色温调节得和 Mac OS X 一致
  4. UI4_UIStepper与UIProgressView
  5. Python和OpenCV环境配置
  6. 程序运行正常,数据库没反应
  7. 入门Pandas不可不知的技巧
  8. Silverlight 里如何实现隐式样式,ImplicitStyleManager 的实现思想
  9. 图像分割——基于二维灰度直方图的阈值处理
  10. Contest2162 - 2019-3-28 高一noip基础知识点 测试5 题解版
  11. MATLAB判断文件是否存在、删除文件
  12. CentOS7:搭建SVN + Apache 服务器
  13. mui实现手机web前端拍照_Web前端中的常见技术名称及所实现的功能
  14. LeetCode:67. 二进制求和(python、c++)
  15. JS库之Highlight.js高亮代码
  16. postsql字符串字段转数字用法
  17. 求解多变量非线性全局最优解_约束条件下多变量非线性函数的区间算法.doc
  18. 0102Linux基础命令
  19. 你知道安卓的3D Touch吗?(Shortcut详解,你想知道的我都有)
  20. html json是什么文件,JSON是什么?

热门文章

  1. React Redux 与胖虎他妈
  2. PHP世纪年,[转帖]PHP世纪万年历_PHP教程
  3. 过滤微信昵称emoji表情
  4. 美女教你虐待蚊子的三大绝招
  5. 学术不端网查重靠谱吗_学术不端网查重怎么样鉴别是否真品?
  6. Deep visual domain adaptation: A survey
  7. conda 安装mxnet 遇到问题总结
  8. JQuery 动态显示和隐藏
  9. 【Unity】Unity3D控制Camera移动
  10. vivo X旗舰系列推出智慧办公Pro,琥珀扫描预装首发成亮点