ganymed-ssh2-build210.jar 的使用

ganymed-ssh2简介:

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

 

Ganymed SSH-2 for Java系列2之连接远程服务器

连接远程服务器,新建一个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端口改为什么,我们底层的这个连接方法都不在需要改动了。



  

Ganymed SSH-2 for Java系列3之执行远程shell 命令

分类: 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.csdn.net/wangmuming/article/details/19835631

你可能感兴趣的:(ssh,Ganymed)