2

我想使用 jsch 和 'nohup with &' 命令在后台启动我的程序。这是我的代码:

    String command = "sudo nohup -jar [path to my jar] &";
    try{
        java.util.Properties config = new java.util.Properties();
        config.put("StrictHostKeyChecking", "no");
        JSch jsch = new JSch();
        Session session = jsch.getSession(user, host, 22);
        session.setPassword(password);
        session.setConfig(config);
        session.connect();
        System.out.println("Connected");

        Channel channel = session.openChannel("exec");
        ((ChannelExec)channel).setPty(true);
        ((ChannelExec)channel).setCommand(command);
        channel.setInputStream(null);
        ((ChannelExec)channel).setErrStream(System.err);

        InputStream in = channel.getInputStream();
        channel.connect(); 
        byte[] tmp = new byte[1024];
        while (true) {
            while (in.available() > 0) {
                int i = in.read(tmp, 0, 1024);
                if (i < 0) {
                    break;
                }
                System.out.print(new String(tmp, 0, i));
            }

            if (channel.isClosed()) {
                System.out.println("exit-status: " + channel.getExitStatus());
                break;
            }

            try {
                Thread.sleep(1000);
            } catch (Exception ee) {
            }
        }
        channel.disconnect();
        session.disconnect();
        System.out.println("DONE");
    } catch(Exception e) {
        e.printStackTrace();
    }

作为我得到的输出:

Connected
exit-status: 0
DONE

但程序没有启动。没有'&'它可以工作,但没有它。同样的情况是当我将 nohup 命令放入 .sh 脚本然后运行它时。任何想法如何解决这个问题?

提前致谢!

4

2 回答 2

1

3年后...

我最近遇到了同样的问题。我通过使用解决了它:

((ChannelExec)channel).setPty(false);

并通过重定向输出流。在我看来,这取决于正在执行的程序。我有一个不同的脚本,它只是睡觉并将日期打印到一个文件中,它不需要任何重定向。它也独立于JSch。使用命令行 ssh 也存在问题。

我实际想要执行的命令需要将其输出流重定向到标准输出之外。如果单独重定向标准输出不起作用,则重定向错误流并关闭输入流<&-可能会有所帮助。

于 2015-11-30T15:59:31.803 回答
0

替换这一行:

String command = "sudo nohup -jar [path to my jar] &";

有了这个:

String command = "sudo nohup -jar [path to my jar]>out.log 2>&1 &";
于 2021-10-06T09:06:19.740 回答