gpt4 book ai didi

Java 不会使用 Apache commons exec 执行 shellscript 中的所有命令

转载 作者:行者123 更新时间:2023-11-30 02:47:29 24 4
gpt4 key购买 nike

我在这里遇到了如此奇怪的行为。

我有以下方法:

public static void loadMonitorsFromCron(){  
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
File ism_dir = new File("/var/app/ism/");
String line = "/usr/bin/ksh /var/app/ism/ism_check_cron.ksh";
CommandLine commandLine = CommandLine.parse(line);
try {
DefaultExecutor exec = new DefaultExecutor();
PumpStreamHandler streamHandler = new PumpStreamHandler(outputStream);
exec.setWorkingDirectory(ism_dir);
exec.setStreamHandler(streamHandler);
exec.execute(commandLine);
} catch (ExecuteException e1) {
System.out.println("ERROR: "+e1.getMessage());
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
System.out.println("ERROR: "+e1.getMessage());
// TODO Auto-generated catch block
e1.printStackTrace();
}
String[] paths = outputStream.toString().split("\n");

System.out.println("Paths: ");
for(int i=0;i<paths.length;i++)
System.out.println(paths[i]);

loadErrorCodeFromPath(paths);
}

这是我正在尝试执行的脚本:ism_check_cron.ksh:

#!/usr/bin/ksh

echo "inbound_monitor.ksh"
echo "$(crontab -l | grep ism | grep -v '#' | cut -d ' ' -f 6 | cut -d '/' -f 5)"
echo "ism_heapdump.ksh"

当我查看 systemOut 的输出时,我只看到:

SystemOut     O Paths:
SystemOut O inbound_monitor.ksh
SystemOut O
SystemOut O ism_heapdump.ksh

crontab -l 应该列出许多其他字符串,如上面的字符串,但如您所见,我通过 Java 没有得到任何结果。

如果我在 Linux 终端中执行脚本,它就可以正常工作。由于 Java 可以执行脚本的“某些部分”,我也认为该方法也很好。所以我完全迷失了。有什么提示吗?

========更新=========

问题已解决,以后的读者可以引用下面的评论。

最佳答案

执行不带 -u 选项的 crontab -l 将仅列出当前用户的 crontab 条目。

解决方案是使用 -u 参数指向实际用户:

echo "$(crontab -u myuser -l | grep ism | grep -v '#' | cut -d ' ' -f 6 | cut -d '/' -f 5)"

第二个解决方案是为正在运行 java 程序的用户添加所有 crantab 条目,并从不需要它们的用户中删除条目。

关于Java 不会使用 Apache commons exec 执行 shellscript 中的所有命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39733610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com