gpt4 book ai didi

java - 使用 JSch sudo 示例和 Channel.setPty 在远程主机上运行 sudo 命令

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:56:21 25 4
gpt4 key购买 nike

我在以下链接中使用了 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);
}
}
}

但是我得到了错误

sorry you must have a tty to run 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 命令需要做什么。

最佳答案

我在我正在处理的项目中有类似的代码,但遇到了同样的错误。我像您一样使用 setPty(true) 解决了这个问题。

我认为您收到此错误是因为您没有关闭代码中的流。如果您使用的是 Java 1.7,则可以按如下方式使用资源 block :

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

或过去版本中的 try...finally block 模式。

关于java - 使用 JSch sudo 示例和 Channel.setPty 在远程主机上运行 sudo 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11968805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com