我正在寻找一种通过java代码将passwd解压到远程unix服务器上的方法。我正在使用Jsch,我可以成功执行find,zip,get等命令。但是,当我通过密码时,#pass;命令没有任何反应动机是创建一个可以每10天更改一次unix服务器密码的应用程序。
这是我尝试使用的代码(find命令工作正常)
JSch sftp=new JSch();
Session session=sftp.getSession("Test", "150.236.9.75");
session.setConfig("StrictHostKeyChecking", "no");
session.setConfig("compression.s2c", "zlib@openssh.com,zlib,none");
session.setConfig("compression.c2s", "zlib@openssh.com,zlib,none");
session.setConfig("compression_level", "9");
session.setPassword("Test@123");
session.connect();
if(session.isConnected())
{
String line="";
System.out.println("connected");
ChannelExec ch=(ChannelExec) session.openChannel("exec");
String Command="passwd -s; Test@123; Pass@123; Pass@123";
//String Command="find *";
InputStream in = ch.getInputStream();
ch.setCommand(Command);
ch.connect();
byte[] buffer = new byte[1024];
int bytes;
do {
while (in.available() > 0) {
bytes = in.read(buffer, 0, 1024);
String file=new String(buffer, 0, bytes);
System.out.println(file);
line=line+file;
}
} while (!ch.isClosed());
ch.disconnect();
}
session.disconnect();
答案 0 :(得分:2)
passwd
命令需要交互输入(即从标准输入读取),请参阅How to write in Java to stdin of ssh?
答案 1 :(得分:0)
让我在不使用Thread.sleep的情况下运行下一个命令:
echo -e \"new-password\nnew-password\" | passwd user-linux