ganymed-ssh2-build210.jar 的使用

本文详细介绍了如何使用GanymedSSH-2forJava包来连接远程服务器,并执行shell命令,包括连接方法、端口参数的调整、执行远程shell命令的方法及测试代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ganymed-ssh2简介:

Ganymed SSH-2 for Java 是用纯 Java 实现 SSH-2 协议的一个包。可以利用它直接在 Java 程序中连接 SSH 服务器。 Ganymed SSH-2 支持 SSH 对话 ( 远程命令执行和 shell 访问 ), 本地和远程端口转发,本地数据流转发, X11 转发和 SCP 。这些都没有依赖任何 JCE provider ,而且所有这些都包含加密的功能。

连接远程服务器,新建一个java工具类,将其命名为CommandRunner;

创建一个连接服务器的静态方法:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public static Connection getOpenedConnection(String host, String username,  
  2.   
  3.     String password) throws IOException {  
  4.   
  5.         if (logger.isInfoEnabled()) {   
  6.   
  7.             logger.info("connecting to " + host + " with user " + username  
  8.   
  9.             + " and pwd " + password);  
  10.   
  11.         }  
  12.   
  13.         Connection conn = new Connection(host);  
  14.   
  15.         conn.connect(); // make sure the connection is opened  
  16.   
  17.         boolean isAuthenticated = conn.authenticateWithPassword(username,  
  18.   
  19.         password);  
  20.   
  21.         if (isAuthenticated == false)  
  22.   
  23.             throw new IOException("Authentication failed.");  
  24.   
  25.         return conn;  
  26.   
  27.     }  

测试代码:

[java]  view plain copy 派生到我的代码片
  1. public static void main(String[] args) {  
  2.         Connection conn = null;  
  3.         try {  
  4.             conn = CommandRunner.getOpenedConnection("172.16.18.141""root",  
  5.                     "123456");  
  6.   
  7.             if (null != conn) {  
  8.                 System.out.println("连接服务器成功!");  
  9.             }  
  10.   
  11.         } catch (IOException e) {  
  12.             e.printStackTrace();  
  13.         } finally {  
  14.             conn.close();  
  15.             conn = null;  
  16.         }  
  17.   
  18.     }  
  19. 至此,连接服务器的静态方法完成,但是这样处理会存在一个问题,就是我们都知道ssh默认端口是22,如果服务器的ssh 端口不是22,那么这个连接服务器的代码是不是就不可以用了啦,所以需要简单的修改下 ,修改如下:

    方法增加一个端口参数:


    [java] view plaincopy派生到我的代码片
    1. public static Connection getOpenedConnection(String host, String username,  
    2.   
    3. String password,int port) throws IOException {  

    连接的地方将参数放进去:

    [java]  view plain copy 派生到我的代码片
    1. Connection conn = new Connection(host,port);  

    这样不论ssh端口改为什么,我们底层的这个连接方法都不在需要改动了。



分类: JAVA shell SSH2 2014-02-24 18:42  846人阅读  评论(1)  收藏  举报

利用Ganymed SSH-2 for Java 连接到远程服务器,然后执行shell命令;


首先我们再在之前CommandRunner类中再添加一个执行shell命令的方法,具体如下所示:


[java]  view plain copy 派生到我的代码片
  1. public static String execShellScript(String host, String username,  
  2.             String password,  
  3.   
  4.             String cmd, int port) throws IOException {  
  5.   
  6.         if (logger.isInfoEnabled()) {  
  7.   
  8.             logger.info("running SSH cmd [" + cmd + "]");  
  9.   
  10.         }  
  11.   
  12.         Connection conn = null;  
  13.   
  14.         Session sess = null;  
  15.   
  16.         InputStream stdout = null;  
  17.   
  18.         BufferedReader br = null;  
  19.   
  20.         StringBuffer buffer = new StringBuffer("exec result:");  
  21.         buffer.append(System.getProperty("line.separator"));// 换行  
  22.         try {  
  23.   
  24.             conn = getOpenedConnection(host, username, password, port);  
  25.   
  26.             sess = conn.openSession();  
  27.   
  28.             sess.execCommand(cmd);  
  29.   
  30.             stdout = new StreamGobbler(sess.getStdout());  
  31.   
  32.             br = new BufferedReader(new InputStreamReader(stdout));  
  33.   
  34.             while (true) {  
  35.   
  36.                 // attention: do not comment this block, or you will hit  
  37.                 // NullPointerException  
  38.   
  39.                 // when you are trying to read exit status  
  40.   
  41.                 String line = br.readLine();  
  42.   
  43.                 if (line == null)  
  44.   
  45.                     break;  
  46.                   
  47.                 buffer.append(line);  
  48.                 buffer.append(System.getProperty("line.separator"));// 换行  
  49.   
  50.                 if (logger.isInfoEnabled()) {  
  51.   
  52.                     logger.info(line);  
  53.   
  54.                 }  
  55.   
  56.             }  
  57.   
  58.         } finally {  
  59.   
  60.             sess.close();  
  61.   
  62.             conn.close();  
  63.   
  64.         }  
  65.   
  66.         return buffer.toString();  
  67.   
  68.     }  


测试代码:

[java]  view plain copy 派生到我的代码片
  1. public static void main(String[] args) {  
  2.           
  3.         String cmd = "uname -a";  
  4.           
  5.         try {  
  6.             String info = CommandRunner.execShellScript("172.16.18.141""root",  
  7.                     "123456",cmd,22);  
  8.               
  9.             System.out.println("info is:"+info);  
  10.         } catch (IOException e) {  
  11.             e.printStackTrace();  
  12.         }  
  13.   
  14.     }  



执行结果

log4j:WARN No appenders could be found for logger (com.ssh2.shell.ganymed.CommandRunner).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
info is:exec result:
Linux localhost.localdomain 2.6.32-220.el6.x86_64 #1 SMP Wed Nov 9 08:03:13 EST 2011 x86_64 x86_64 x86_64 GNU/Linux


转自:http://blog.youkuaiyun.com/wangmuming/article/details/19835631

java远程访问linux服务器操作 远程执行shll脚本或者命令、上传下载文件 package com.szkingdom.kfit.bank.ccbDirectShortcut.helper; import ch.ethz.ssh2.Connection; import ch.ethz.ssh2.SCPClient; import ch.ethz.ssh2.Session; import ch.ethz.ssh2.StreamGobbler; import common.Logger; import org.apache.commons.lang.StringUtils; import java.io.*; import java.util.logging.Level; /** * SCP远程访问Linux服务器读取文件 * User: boyer * Date: 17-12-7 * Time: 下午3:22 * To change this template use File | Settings | File Templates. */ public class ScpClient { //字符编码默认是utf-8 private static String DEFAULTCHART="UTF-8"; protected static org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(ScpClient.class); static private ScpClient instance; private Connection conn; static synchronized public ScpClient getInstance(String IP, int port, String username, String passward) { if (instance == null) { instance = new ScpClient(IP, port, username, passward); } return instance; } public ScpClient(String IP, int port, String username, String passward) { this.ip = IP; this.port = port; this.username = username; this.password = passward; } private String ip; private int port; private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public int getPort() { return port; } public void setPort(int port) { this.port = port; } /** * 远程登录linux的主机 * @author Ickes * @since V0.1 * @return * 登录成功返回true,否则返回false */ public Boolean login(){ boolean flg=false; try { conn = new Connection(ip); conn.connect();//连接 flg=conn.authenticateWithPassword(username, password);//认证 } catch (IOException e) { e.printStackTrace(); } return flg; } /** * 下载文件 * @param remoteFile 远程文件地址 * @param localTargetDirectory 本地目录地址 */ public void getFile(String remoteFile, String localTargetDirectory) { try { if(login()){ SCPClient client = new SCPClient(conn); client.get(remoteFile, localTargetDirectory); conn.close(); } } catch (IOException ex) { log.error(ex); } } /** * 上传文件 * @param localFile 本地目录地址 * @param remoteTargetDirectory 远程目录地址 */ public void putFile(String localFile, String remoteTargetDirectory) { try { if(login()){ SCPClient client = new SCPClient(conn); client.put(localFile, remoteTargetDirectory); conn.close(); } } catch (IOException ex) { log.error(ex); } } /** * 上传文件 * @param localFile 本地目录地址 * @param remoteFileName 重命名 * @param remoteTargetDirectory 远程目录地址 * @param mode 默认0600权限 rw 读写 */ public void putFile(String localFile, String remoteFileName,String remoteTargetDirectory,String mode) { try { if(login()){ SCPClient client = new SCPClient(conn); if((mode == null) || (mode.length() == 0)){ mode = "0600"; } client.put(localFile, remoteFileName, remoteTargetDirectory, mode); //重命名 ch.ethz.ssh2.Session sess = conn.openSession(); String tmpPathName = remoteTargetDirectory +File.separator+ remoteFileName; String newPathName = tmpPathName.substring(0, tmpPathName.lastIndexOf(".")); sess.execCommand("mv " + remoteFileName + " " + newPathName);//重命名回来 conn.close(); } } catch (IOException ex) { log.error(ex); } } public static byte[] getBytes(String filePath) { byte[] buffer = null; try { File file = new File(filePath); FileInputStream fis = new FileInputStream(file); ByteArrayOutputStream byteArray = new ByteArrayOutputStream(1024*1024); byte[] b = new byte[1024*1024]; int i; while ((i = fis.read(b)) != -1) { byteArray.write(b, 0, i); } fis.close(); byteArray.close(); buffer = byteArray.toByteArray(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return buffer; } /** * @author Ickes * 远程执行shll脚本或者命令 * @param cmd * 即将执行的命令 * @return * 命令执行完后返回的结果值 * @since V0.1 */ public String execute(String cmd){ String result=""; try { if(login()){ Session session= conn.openSession();//打开一个会话 session.execCommand(cmd);//执行命令 result=processStdout(session.getStdout(),DEFAULTCHART); //如果为得到标准输出为空,说明脚本执行出错了 if(StringUtils.isBlank(result)){ result=processStdout(session.getStderr(),DEFAULTCHART); } conn.close(); session.close(); } } catch (IOException e) { e.printStackTrace(); } return result; } /** * @author Ickes * 远程执行shll脚本或者命令 * @param cmd * 即将执行的命令 * @return * 命令执行成功后返回的结果值,如果命令执行失败,返回空字符串,不是null * @since V0.1 */ public String executeSuccess(String cmd){ String result=""; try { if(login()){ Session session= conn.openSession();//打开一个会话 session.execCommand(cmd);//执行命令 result=processStdout(session.getStdout(),DEFAULTCHART); conn.close(); session.close(); } } catch (IOException e) { e.printStackTrace(); } return result; } /** * 解析脚本执行返回的结果集 * @author Ickes * @param in 输入流对象 * @param charset 编码 * @since V0.1 * @return * 以纯文本的格式返回 */ private String processStdout(InputStream in, String charset){ InputStream stdout = new StreamGobbler(in); StringBuffer buffer = new StringBuffer();; try { BufferedReader br = new BufferedReader(new InputStreamReader(stdout,charset)); String line=null; while((line=br.readLine()) != null){ buffer.append(line+"\n"); } } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return buffer.toString(); } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值