我正在尝试执行一个kafka脚本来检索主题,消费者组和滞后信息。我不断收到错误消息,并在该论坛和其他论坛中进行搜索后发现信息冲突。有人说不可能从Windows上的Unix上执行远程脚本,而另一些人就如何纠正此错误提供了一些建议。我能够连接并运行一个简单的ping命令,并能够检索响应。也许我在这里遗漏了一个简单的被忽略的错误。
代码如下:
try {
jsch.setKnownHosts("C:\\Users\\.ssh\\ssh_host_rsa_key.pub");
Session session = jsch.getSession(uname, host, 22);
Properties config = new Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.setPassword(pword);
session.connect();
Process p = Runtime.getRuntime().exec("./usr/kafka/bin/
kafka-consumer-groups.sh --bootstrap-server 192.xxx.xx.xxx:9092
--describe -group OPSII");
InputStream scriptStdout = p.getInputStream();
BufferedReader scriptReader= new BufferedReader(new
InputStreamReader(scriptStdout));
String scriptOutput = scriptReader.readLine();
StringBuilder sb = new StringBuilder();
while ((scriptOutput = scriptReader.readLine())!= null) {
sb.append(scriptOutput + "\n");
}
scriptStdout.close();
错误:
Exception in thread "main" java.io.IOException: Cannot run program
"./usr/kafka/bin/kafka-consumer-groups.sh": CreateProcess
error=2, The system cannot find the file specified
at java.lang.ProcessBuilder.start(Unknown Source)
at java.lang.Runtime.exec(Unknown Source)
at java.lang.Runtime.exec(Unknown Source)
我已经确认该脚本可在远程UNIX机器上运行并且目录正确。可能是格式,应该是“ //”而不是“ /”吗?究竟是什么会导致此错误?请问这不是一个重复的问题,因为其他提议的解决方案都没有起作用。
答案 0 :(得分:1)
您可以使用以下代码通过JSch
// open a channel
channel = session.openChannel("exec");
// type in your command
String command = "./path/to/your_script.sh --add_params \n";
//Below command will execute the data you set in the previous line
((ChannelExec) channel).setCommand(command);
channel.connect();
请注意,这仅使用JSch
库。
编辑: 根据您的评论,您还希望从控制台获取该用途的输出:
InputStream in = channel.getInputStream();