我正在尝试使用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();
感谢您的建议!