JSch:频道从未关闭或EOF

时间:2012-08-27 08:45:50

标签: java ssh jsch

我是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");
}

2 个答案:

答案 0 :(得分:2)

尝试追加“退出”;在您使用exec频道后执行命令后。

答案 1 :(得分:0)

我们的应用程序也未在执行程序上收到EOF。在命令上附加exit;并不能解决问题。

它与stderr输出有关。将stderr重定向到stdout解决了(解决方法!)问题。
因此,我们在命令后附加了2>&1

${command} 2>&1