Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/371.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
通过ssh将Shell脚本从Java程序执行到远程服务器_Java_Shell - Fatal编程技术网

通过ssh将Shell脚本从Java程序执行到远程服务器

通过ssh将Shell脚本从Java程序执行到远程服务器,java,shell,Java,Shell,下面是我用来ssh到一个远程服务器的程序,它工作正常 我的问题是-有没有办法在远程服务器上执行windows机器上的shell脚本 如果有的话?然后,我如何修改下面的代码,以便在我尝试连接的远程服务器上执行shell脚本 public class SampleTest{ public static void main(String[] arg){ try{ JSch jsch=new JSch(); String host=null; if(a

下面是我用来ssh到一个远程服务器的程序,它工作正常

我的问题是-有没有办法在远程服务器上执行windows机器上的
shell脚本

如果有的话?然后,我如何修改下面的代码,以便在我尝试连接的远程服务器上执行shell脚本

public class SampleTest{
  public static void main(String[] arg){

    try{
      JSch jsch=new JSch();

      String host=null;
      if(arg.length>0){
        host=arg[0];
      }
      else{
        host=JOptionPane.showInputDialog("Enter username@hostname",
                                         System.getProperty("user.name")+
                                         "@lvsaishdc3in0001.lvs.host.com"); 
      }
      String user=host.substring(0, host.indexOf('@'));
      host=host.substring(host.indexOf('@')+1);

      Session session=jsch.getSession(user, host, 22);

      String passwd = JOptionPane.showInputDialog("Enter password");
      session.setPassword(passwd);

      UserInfo ui = new MyUserInfo(){
        public void showMessage(String message){
          JOptionPane.showMessageDialog(null, message);
        }
        public boolean promptYesNo(String message){
          Object[] options={ "yes", "no" };
          int foo=JOptionPane.showOptionDialog(null, 
                                               message,
                                               "Warning", 
                                               JOptionPane.DEFAULT_OPTION, 
                                               JOptionPane.WARNING_MESSAGE,
                                               null, options, options[0]);
          return foo==0;
        }

      };

      session.setUserInfo(ui);

      //session.connect();
      session.connect(30000);   // making a connection with timeout.

      Channel channel=session.openChannel("shell");

      // Enable agent-forwarding.
      //((ChannelShell)channel).setAgentForwarding(true);

      channel.setInputStream(System.in);
      /*
      // a hack for MS-DOS prompt on Windows.
      channel.setInputStream(new FilterInputStream(System.in){
          public int read(byte[] b, int off, int len)throws IOException{
            return in.read(b, off, (len>1024?1024:len));
          }
        });
       */

      channel.setOutputStream(System.out);

      /*
      // Choose the pty-type "vt102".
      ((ChannelShell)channel).setPtyType("vt102");
      */

      /*
      // Set environment variable "LANG" as "ja_JP.eucJP".
      ((ChannelShell)channel).setEnv("LANG", "ja_JP.eucJP");
      */

      //channel.connect();
      channel.connect(3*1000);
    }
    catch(Exception e){
      System.out.println(e);
    }
  }

  public static abstract class MyUserInfo
                          implements UserInfo, UIKeyboardInteractive{
    public String getPassword(){ return null; }
    public boolean promptYesNo(String str){ return false; }
    public String getPassphrase(){ return null; }
    public boolean promptPassphrase(String message){ return false; }
    public boolean promptPassword(String message){ return false; }
    public void showMessage(String message){ }
    public String[] promptKeyboardInteractive(String destination,
                                              String name,
                                              String instruction,
                                              String[] prompt,
                                              boolean[] echo){
      return null;
    }
  }
}

是的,但可能不是你想的那样

您需要将脚本复制到远程系统

查看谁编写了一个
FileSender
wrapper,这可能会有所帮助

你也可以出于兴趣而退房


您还可以查看包含的示例(知道它们在某处)

您可以执行脚本,而无需将它们复制到远程服务器。调用bash shell并将命令从shell脚本通过管道传输到远程进程(在本例中为
bash

下面是一个简单的脚本
echo“你好!”;环境
。现在,我们可以按如下方式运行此脚本:

$ echo 'echo "Hi there!"; env' | ssh localhost bash
tuxdna@localhost's password: 
Hi there!
XDG_SESSION_ID=10
SHELL=/bin/bash
SSH_CLIENT=127.0.0.1 43064 22
USER=tuxdna
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
MAIL=/var/mail/tuxdna
PWD=/home/tuxdna
LANG=en_IN
HOME=/home/tuxdna
SHLVL=2
LANGUAGE=en_IN:en
LOGNAME=tuxdna
SSH_CONNECTION=127.0.0.1 43064 127.0.0.1 22
XDG_RUNTIME_DIR=/run/user/1000
_=/usr/bin/env

基本上,您必须将shell脚本写入远程进程的
STDIN

Ok。这意味着,脚本需要在远程服务器上才能运行?对吗?如果是,那么我可以将脚本复制到远程服务器,然后是否可以运行远程服务器上的shell脚本?是和是。将脚本复制到remote,在remote上执行脚本。如何使用我拥有的上述程序来实现这一点?如果您能在这里用一个与我的代码相关的示例来帮助我,那将是非常有帮助的您将要复制该文件。请看一些链接。jsh附带的示例非常好,我就是这样解决的。请看一下
安全复制到
实现