java远程执行Shell命令-通过ganymed-ssh2连接

更新时间:2023-12-09 21:28:06 阅读: 评论:0

2023年12月9日发(作者:办学模式)

-

java远程执行Shell命令-通过ganymed-ssh2连接

java远程执行Shell命令-通过ganymed-ssh2连接

一、实现远程执行

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

【环境参数】

远程机器IP:192.168.243.21

用户名:ur

密码:password

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

【具体步骤】

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

d

ganymed-ssh2

262

commons-io

commons-io

2.5

2、编写RemoteShellExecutor工具类。

package ;

import .*;

import t;

import lCondition;

import tion;

import n;

import Gobbler;

import s;

public class RemoteShellExecutor {

private Connection conn;

/** 远程机器IP */

private String ip;

/** 用户名 */

private String osUrname;

/** 密码 */

private String password;

private String chart = tChart().toString();

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

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

= ip;

name = usr;

rd = pasword;

}

/**

* 登录

* @return

* @throws IOException

*/

private boolean login() throws IOException {

conn = new Connection(ip);

t();

return ticateWithPassword(osUrname, 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 ssion = ssion();

// Execute a command on the remote machine.

mmand(cmds);

stdOut = new StreamGobbler(out());

outStr = processStream(stdOut, chart);

stdErr = new StreamGobbler(err());

outErr = processStream(stdErr, chart);

rCondition(_STATUS, TIME_OUT);

n("outStr=" + outStr);

n("outErr=" + outErr);

ret = tStatus();

} el {

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

}

} finally {

if (conn != null) {

();

}

uietly(stdOut);

uietly(stdErr);

}

return ret;

}

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

byte[] buf = new byte[1024];

StringBuilder sb = new StringBuilder();

while ((buf) != -1) {

(new String(buf, chart));

}

return ng();

}

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

RemoteShellExecutor executor = new RemoteShellExecutor("192.168.243.21", "ur", "password");

// 执行 参数为java Know dummy

n(2("python /data/bluemoon/kettle/runScript/ods/fact_org_ "));

}

}

3、运行结果

备份数据成功。

4、说明:

getExitStatus方法的返回值

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

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

二、ganymed-ssh讲解:

1. Jar包:

2. 步骤:

a) 连接:

    Connection conn = new Connection(ipAddr);

    t();

b)认证:

    boolean authenticateVal = ticateWithPassword(urName, password);

c) 打开一个Session:

    if(authenticateVal)

      Session ssion = ssion();

d) 执行Shell命令:

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

        mmand(cmd);

2) 遇到问题:

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

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

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

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

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

          

        解决:

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

          // 建立虚拟终端

          tPTY("bash");

          // 打开一个Shell

          hell();

          // 准备输入命令

          PrintWriter out = new PrintWriter(in());

     // 输入待执行命令

          n(cmd);

          n("exit")

          // 6. 关闭输入流

          ();

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

          rCondition( | | _STATUS , 30000);

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

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

        解决办法:

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

证命令执行完毕,

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

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

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

功,则生成.end文件

            获取文件的方法 也提供了,如下

              SCPClient scpClient = SCPClient();

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

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

    InputStream stderr = new StreamGobbler(err());

    InputStream in = new StreamGobbler(out());

获取流中的数据:

private String processStdErr(InputStream in, String chart)

throws IOException {

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

StringBuffer sb = new StringBuffer();

if (ble() != 0) {

while (true) {

String line = ne();

if (line == null)

break;

(line).append(perty("tor"));

}

}

return ng();

}

三、使用实

1、使用mmand(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 ssion = ssion();

// 建立虚拟终端

tPTY("bash");

// 打开一个Shell

hell();

stdOut = new StreamGobbler(out());

stdErr = new StreamGobbler(err());

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

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

// 准备输入命令

PrintWriter out = new PrintWriter(in());

// 输入待执行命令

n(cmds);

n("exit");

// 6. 关闭输入流

();

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

rCondition( | | _STATUS , 30000);

n("Here is the output from stdout:");

while (true)

{

String line = ne();

if (line == null)

break;

n(line);

}

n("Here is the output from stderr:");

while (true)

{

String line = ne();

if (line == null)

break;

n(line);

}

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

n("ExitCode: " + tStatus());

ret = tStatus();

();/* Clo this ssion */

();/* Clo the connection */

} el {

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

}

} finally {

if (conn != null) {

();

}

uietly(stdOut);

uietly(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 (ctory()) {

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

}

String fileName = e();

execCommand("mkdir -p " + remoteTargetDirectory);

SCPClient sCPClient = SCPClient();

SCPOutputStream scpOutputStream = (fileName, (), remoteTargetDirectory, "0600");

String content = ng(new FileInputStream(file),_8);

(es());

();

();

}

/**

* 传输整个目录

*

* @param localDirectory

* @param remoteTargetDirectory

* @throws IOException

*/

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

File dir = new File(localDirectory);

if (!ctory()) {

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

}

String[] files = ();

for (String file : files) {

if (With(".")) {

continue;

}

String fullName = localDirectory + "/" + file;

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

String rdir = remoteTargetDirectory + "/" + file;

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

transferDirectory(fullName, rdir);

} el {

transferFile(fullName, remoteTargetDirectory);

}

}

}

使用:

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

SSHAgent sshAgent = new SSHAgent();

ssion("192.168.243.21", "ur", "password#");

erFile("C:","/data/applogs/bd-job/jobhandler/2018-09-13");

();

}

参考文章

Java远程执行Shell命令

Ganymed SSH2 模拟类似FileZilla远程传输文件

-

java远程执行Shell命令-通过ganymed-ssh2连接

本文发布于:2023-12-09 21:28:06,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/zhishi/a/170212848640126.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:java远程执行Shell命令-通过ganymed-ssh2连接.doc

本文 PDF 下载地址:java远程执行Shell命令-通过ganymed-ssh2连接.pdf

标签:执行   命令   远程   环境变量
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 实用文体写作网旗下知识大全大全栏目是一个全百科类宝库! 优秀范文|法律文书|专利查询|