我正在尝试使用 JSch 在目标主机上运行命令,并且希望能够指示密码,例如:“sudo echo hello”,然后输入当前用户的密码。
我不明白如何与提示正确交互。下面的代码显示了我尝试提供密码的两种方式,它们都失败并显示消息:
sudo:不存在 tty,也没有指定 askpass 程序
我正在处理这个:
JSch jsch=new JSch();
String host="192.168.0.17";
String user="xxx";
String passwd="xxx";
Session session=jsch.getSession(user, host, 22);
session.setPassword(passwd);
session.setConfig("StrictHostKeyChecking", "no");
session.connect();
ChannelExec channel=(ChannelExec)session.openChannel("exec");
channel.setCommand("sudo echo hello");
channel.setErrStream(System.err);
channel.connect();
int id = 1;
// must write on output stream?
if(id==0){
channel.getOutputStream().write(passwd.getBytes());
}
// must read on input stream?
else if(id==1){
channel.getInputStream().read(passwd.getBytes());
}
channel.disconnect();
感谢您的建议!