簡體   English   中英

如何使用Java從一台計算機到另一台計算機執行SSH

[英]How to do a ssh from one machine to another machine using Java

使用膩子,我可以在一台機器上到另一台機器之間進行ssh交換,就像鏈式處理一樣。我想在程序中復制它。到目前為止,我可以將ssh交換到第一台機器上。我如何SSH到后續機器。我也想執行一些命令,例如'pwd'或'ls'。

import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import java.io.*;

public class SSH {

   public static void main(String args[]) {

     String user = "******";
     String password = "******";
     String host = "******";
     int port=22;

     String remoteFile="something.txt";

     try {
        JSch jsch = new JSch();
        Session session = jsch.getSession(user, host, port);
        session.setPassword(password);
        java.util.Properties config = new java.util.Properties(); 
        config.put("StrictHostKeyChecking", "no");
        session.setConfig(config);
        session.connect();
        ChannelSftp sftpChannel = (ChannelSftp) session.openChannel("sftp");
        sftpChannel.connect();
        System.out.println("connected to first server....");
        InputStream out= null;
        out= sftpChannel.get(remoteFile);
        BufferedReader br = new BufferedReader(new InputStreamReader(out));
        String line;
        while ((line = br.readLine()) != null)
           System.out.println(line);
        br.close();

        /********* Here i want to ssh to another machine from the already connected one ******/

    String command = "pwd" ; //executing correctly with o/p
    Channel channel = session.openChannel("exec");
    ((ChannelExec) channel).setCommand(command);
    channel.setInputStream(null);
    InputStream in = channel.getInputStream();
    channel.connect();
    byte[] tmp=new byte[1024];
    while(true){
      while(in.available()>0){
        int i=in.read(tmp, 0, 1024);
        if(i<0)break;
        System.out.print(new String(tmp, 0, i));
      }
      if(channel.isClosed()){
        System.out.println("exit-status: "+channel.getExitStatus());
        break;
      }

    }
    channel.disconnect();

    Channel channel1 = session.openChannel("exec");
    ((ChannelExec) channel1).setCommand("ssh username@hostname" + "&&" + "password");//not    executing
    channel1.setInputStream(null);
    in = channel1.getInputStream();
    channel1.connect();
    channel1.disconnect();



    Channel channel2 = session.openChannel("exec");

    ((ChannelExec) channel2).setCommand("ls"); //to verify if ssh to 2nd machine has happened.not working
     channel2.setInputStream(null);
     in = channel2.getInputStream();
    channel2.connect();
   // byte[] tmp=new byte[1024];
    while(true){
      while(in.available()>0){
        int i=in.read(tmp, 0, 1024);
        if(i<0)break;
        System.out.print(new String(tmp, 0, i));
      }
      if(channel.isClosed()){
        System.out.println("exit-status: "+channel2.getExitStatus());
        break;
      }

    }
    channel2.disconnect();
    session.disconnect();
     } catch(Exception e) { System.err.print(e); }
   }

}

在session.connect();之后 使用代碼在Linux服務器中執行命令

                            session.connect();
            command = "pwd;" + "ssh username@hostname" + "&&" + "password" ; // u can give your own commands

            Channel channel = session.openChannel("exec");
            ((ChannelExec) channel).setCommand(command);
            channel.setInputStream(null);
            InputStream in = channel.getInputStream();
            channel.connect();
            byte[] tmp = new byte[1024];
            while (true) {
                while (in.available() > 0) {
                    int i = in.read(tmp, 0, 1024);
                    if (i > 0) {

                        output = new String(tmp, 0, i); // name a variable of your own

                    } else {

                        break;

                    }

                    System.out.println(output);

                }}
                                         channel.disconnect(); 
                                         session.disconnect();

確保斷開通道。 這樣您就可以創建一個新頻道並執行您的下一個命令。

我嘗試了這個,對我有用。 但是我不確定這是否正確。

`公共類SSH {

public static void main(String[] args) {
    String server1="server1";
    String server2="server2";
    String user1="user1";
    String user2="user2";
    String password1="pswd1";
    String password2="pswd2";

    String command1="ls -ltr";

    try{

        java.util.Properties config = new java.util.Properties(); 
        config.put("StrictHostKeyChecking", "no");
        JSch jsch = new JSch();
        Session session1=jsch.getSession(user1, server1, 22);
        session1.setPassword(password1);
        session1.setConfig(config);
        session1.connect();
        System.out.println("Connected session1");



        Session session2=jsch.getSession(user2,server2);
        session2.setPassword(password2);
        session2.setConfig(config);
        session2.connect();
        System.out.println("Connected session2");


        Channel channel=session1.openChannel("exec");   
        ((ChannelExec)channel).setCommand(command1);
        channel.setInputStream(null);
        InputStream in=channel.getInputStream();
        ((ChannelExec)channel).setErrStream(System.err);   
        channel.connect();

        Channel channel1=session2.openChannel("exec");  
        ((ChannelExec)channel1).setCommand(command1);
        channel1.setInputStream(null);
        InputStream in1=channel1.getInputStream();
        ((ChannelExec)channel1).setErrStream(System.err);   
        channel1.connect();

        byte[] tmp=new byte[1024];
        while(true){
            while(in.available()>0){
                int i=in.read(tmp, 0, 1024);
                if(i<0)break;
                System.out.print(new String(tmp, 0, i));
            }
            if(channel.isClosed()){
                System.out.println("exit-status: "+channel.getExitStatus());
                break;
            }
            try{Thread.sleep(1000);}catch(Exception ee){}
        }
        while(true){
            while(in1.available()>0){
                int i=in1.read(tmp, 0, 1024);
                if(i<0)break;
                System.out.print(new String(tmp, 0, i));
            }
            if(channel1.isClosed()){
                System.out.println("exit-status: "+channel1.getExitStatus());
                break;
            }

            try{Thread.sleep(1000);}catch(Exception ee){}
        }
        channel.disconnect();
        session2.disconnect();
        session1.disconnect();
        System.out.println("DONE");
    }catch(Exception e){
        e.printStackTrace();
    }

}

}`

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM