3

次のリンクで JSch Sudo の例を使用しました。

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

PuTTY を使用して 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);
    }
  }
}

しかし、私はエラーが発生しています

sudo を実行するには tty が必要です。

私も使用しようとしまし((ChannelExec) channel).setPty(true)たが、プログラムを1回実行できますが、次回は同じ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リモートホストでコマンドを実行するために必要なことを教えてください。

4

3 に答える 3

3

作業中のプロジェクトに同様のコードがあり、同じエラーが発生していました。私はあなたがしたようにこれを使用してこれを解決しましsetPty(true)た。

コード内のストリームを閉じていないため、このエラーが発生していると思います。Java 1.7を使用している場合は、次のようにリソースブロックを使用できます。

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

またはtry...finallyブロックパターンを過去のバージョンから。

于 2012-12-26T17:29:13.243 に答える
0

設定後

((ChannelExec) channel).setPty(true)

報告された問題は私のコードで解決されました。

于 2013-09-30T09:04:02.080 に答える
0

デフォルトでは、SUDO は TTY を要求するように設定されています。つまり、SUDO はログイン シェルから実行する必要があります。

これはおそらく、/etc/sudoers ファイル (またはそれに含まれるファイル) に次のものが含まれているためです。

Defaults requiretty

ただし、sudo のオプション -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 を動作させたい場合は、次のように visudo コマンドを使用して、sudoers ファイルから requiretty を無効にする必要があります。

Defaults !requiretty

また

#Defaults requiretty
于 2016-11-10T09:49:57.293 に答える