Java-Jschsudoコマンド。
私はJschを使用しており、私のタスクはサーバーにログインして次のようにコマンドを実行することです
sudo su - bumboo
次のコードを使用すると、正常に接続できますが、コマンドを実行しようとするとエラーが発生しますsudo: sorry, you must have a tty to run sudo
以下は私のコードです
public static Channel sudoBamboo(Session session, String sudo_pass) throws Exception {
ChannelExec channel = (ChannelExec) session.openChannel("exec");
//SUDO to bamboo user
String command = "sudo su - bumboo";
channel.setCommand(command);
//InputStream in = channel.getInputStream();
channel.setInputStream(null, true);
OutputStream out = channel.getOutputStream();
//channel.setErrStream(System.err);
channel.setOutputStream(System.out, true);
channel.setExtOutputStream(System.err, true);
//Test change
//channel.setPty(false);
channel.connect();
out.write((sudo_pass + "\n").getBytes());
out.flush();
return channel;
}
彼らが使用するようにアドバイスしたsudo.javaの利用可能な例のjsch
// 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);
しかし、コマンドを実行する"sudo -S -p - su bamboo"
と、同じエラーが発生します
助けていただければ幸いです。