使用JSch须藤例子,Channel.setPty远程主机上运行sudo命令使用JSch须藤例子,C

2019-05-12 04:09发布

我已经使用在以下链接JSch须藤例如:

http://www.jcraft.com/jsch/examples/Sudo.java.html

并且改变了它一下,摆脱所有的对话,因为我必须使用它使用腻子EC2实例。

现在我的代码如下所示:

import com.jcraft.jsch.*;
import java.awt.*;
import javax.swing.*;
import java.io.*;

public class sudo{
  public static void main(String[] arg){
    try{
      JSch jsch=new JSch();

      String host=null;
      if(arg.length>0){
        host=arg[0];
      }

      String privateKey = "my private key.pem";

      jsch.addIdentity(privateKey, "");
      Session session=jsch.getSession("ec2-user", "xx.xx.xx.xx", 22);

      session.setPassword("");
      java.util.Properties config = new java.util.Properties();
      config.put("StrictHostKeyChecking", "no");
      session.setConfig(config);

      session.connect();

      String command="sudo mkdir /data";
      String sudo_pass="";

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

      // man sudo
      // -S The -S (stdin) option causes sudo to read the password from the
      // standard input instead of the terminal device.
      // -p The -p (prompt) option allows you to override the default
      // password prompt and use a custom one.
      ((ChannelExec)channel).setCommand("sudo -S -p '' "+command);

      InputStream in=channel.getInputStream();
      OutputStream out=channel.getOutputStream();
      ((ChannelExec)channel).setErrStream(System.err);

      channel.connect();

      out.write((sudo_pass+"\n").getBytes());
      out.flush();

      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){}
      }
      channel.disconnect();
      session.disconnect();
    }
    catch(Exception e){
      System.out.println(e);
    }
  }
}

但我得到的错误

对不起,你必须有一个tty运行sudo的

我还试图用((ChannelExec) channel).setPty(true) ,但我可以一次运行该程序,但下一次,对于相同的EC2实例,我收到以下错误,但对于新的实例再次工作正常第一次。

com.jcraft.jsch.JSchException: Session.connect: java.io.IOException: End of IO Stream Read
sudo mkdir /data
Exception in thread "main" com.jcraft.jsch.JSchException: session is down
        at com.jcraft.jsch.Session.openChannel(Session.java:791)

然后,我也不能ssh登录命令行远程主机为好。

是否有人可以指导我什么我需要做的运行sudo远程主机上的命令。

Answer 1:

我有一个项目类似的代码我的工作,并得到同样的错误。 我解决了这个使用setPty(true)为你做。

我认为你得到这个错误,因为你没有在你的代码收出流。 如果您使用的是Java 1.7,你可以按如下方式使用资源块:

try( InputStream in=channel.getInputStream() ) {
    try( OutputStream out = channel.getOutputStream() ) {
    ...
    }
}

或尝试......终于从过去的版本块模式。



Answer 2:

设置完成后

((ChannelExec) channel).setPty(true)

所报告的问题已在我的代码得到有效解决。



Answer 3:

默认情况下,将sudo配置到需要TTY。 也就是说,SUDO预计从登录shell中运行。

这可能是因为你的/ etc / sudoers文件(或它包含的任何文件)有:

Defaults requiretty

但选项须藤-S将使它从标准输入读取。

-S    The -S (stdin) option causes sudo to read the password from
      the standard input instead of the terminal device.  The pass-
      word must be followed by a newline character.

Jsch利用相同的,并试图发送密码。 如果你想Jsch不提示密码工作,你需要禁用从sudoers文件的requiretty ...使用visudo命令如下

Defaults !requiretty

要么

#Defaults requiretty


文章来源: Use JSch sudo example and Channel.setPty for running sudo command on remote host