我是JSch的新手,我的一些脚本遇到问题,我尝试远程执行,而且似乎永远不会结束(并且与使用putty运行时不会做同样的事情).
我已将错误和输出流重定向到我的System.out,并在脚本执行但脚本完成时看到确实错误!因此我不明白为什么频道仍然打开(isClosed和isEOF都是假的).
当我在SSH中使用putty连接时运行该命令,脚本正确执行并且不显示任何错误.当我在Ubuntu中使用ssh命令执行ssh user @ host“my command”时,我获得了与使用JSch时相同的输出(std err),但是ssh命令没有挂起!
你知道我做错了什么,为什么我有不同的输出/行为?这是我运行的java代码(顺便说一句,我不能在同一个会话上发送带有不同通道的几个命令,我不明白为什么,因此我为每个cmd打开一个会话).
public static void runCommand(String user, String password, String cmd) throws JSchException, IOException{
Session session = jSsh.getSession(user, SERVER, SSH_PORT);
session.setPassword(password);
session.setConfig(SSH_PROPERTIES);
session.connect();
SshCommand sshCmd = new SshCommand(session, cmd);
runCommand(sshCmd);
session.disconnect();
}
private static void runCommand(SshCommand sshCmd) throws IOException, JSchException{
Session session = sshCmd.getSshSession();
String cmd = sshCmd.getCmd();
UtilityLogger.log(Level.FINE, "Running command on ssh : "+cmd);
ChannelExec channel = (ChannelExec) session.openChannel("exec");
channel.setCommand(cmd);
channel.setInputStream(null);
InputStream in = channel.getInputStream();
InputStream err = channel.getErrStream();
UtilityLogger.log(Level.FINEST, "Connecting to channel");
channel.connect();
UtilityLogger.log(Level.FINEST, "Channel connected");
byte[] tmp = new byte[1024];
byte[] tmp2 = new byte[1024];
while (true) {
//Flush channel
while (in.available() > 0) {
int i = in.read(tmp, 0, 1024);
if (i < 0)
break;
UtilityLogger.log(Level.FINE, new String(tmp, 0, i));
}
//Flush Error stream
while (err.available() > 0) {
int i = err.read(tmp2, 0, 1024);
if (i < 0)
break;
UtilityLogger.log(Level.FINE, new String(tmp2, 0, i));
}
if(DONT_WAIT_PROCESS_END)
break;
if (channel.isEOF()) {
UtilityLogger.log(Level.FINE, "Channel exit-status: " + channel.getExitStatus());
break;
}
}
try{Thread.sleep(TIME_BETWEEN_COMMAND);}catch(Exception ee){}
channel.disconnect();
UtilityLogger.log(Level.FINEST, "Channel disconnected");
}
最佳答案 尝试附加“退出”;甚至在使用exec通道时执行命令之后.