使用JSch

时间:2017-10-03 16:31:39

标签: java ssh weblogic jsch wlst

我试图通过远程Java Web应用程序在WLST上运行重启服务器命令。

这就是我试图执行的内容:

StringBuilder sb = new StringBuilder();
sb.append("/u01/app/oracle/jdk1.8.0_65/bin/./java -cp /u01/app/oracle/product/Oracle_Home/wlserver/server/lib/weblogic.jar weblogic.WLST");
sb.append(";connect(\'weblogic\',\'" + consolePass + "\',\'" + fullAddress + "\')");
sb.append(";domainRuntime()");
sb.append(";cd(\'/ServerLifeCycleRuntimes/" + serverName + "\')");
sb.append(";cmo.shutdown())");
sb.append(";start(" + serverName + ",'Server')");
String command = sb.toString();

JSch jsch = new JSch();
Session session = jsch.getSession(user, host, port);
session.setUserInfo(new OracleUserInfo(pass));
session.connect();

Channel channel = session.openChannel("exec");
((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()) {
        if (in.available() > 0)
            continue;
        System.out.println("exit-status: " + channel.getExitStatus());
        break;
    }
    try {
        Thread.sleep(1000);
    } catch (Exception ee) {
    }
}
channel.disconnect();
session.disconnect();

我正在使用&#39;;&#39;分离命令,因为我认为需要运行多个命令。

不幸的是,它在第​​2行给出了语法错误。

  

bash:-c:第0行:意外令牌附近的语法错误'weblogic','password','t3://host:7001''
bash: -c: line 0:
/ u01 / app / oracle / jdk1.8.0_65 / bin /./ java -cp / u01 / app / oracle / product / Oracle_Home /wlserver/server/lib/weblogic.jar weblogic.WLST; connect(&#39; weblogic&#39;,&#39;密码&#39;,&#39; t3://主机:7001&#39;)& #39;

我尝试在第一行之后添加\n,结果是第一行被执行(因此它进入了WLST),但其余命令都没有。

StringBuilder sb = new StringBuilder();
sb.append("/u01/app/oracle/jdk1.8.0_65/bin/./java -cp /u01/app/oracle/product/Oracle_Home/wlserver/server/lib/weblogic.jar weblogic.WLST\n");
sb.append(";connect(\'weblogic\',\'" + consolePass + "\',\'" + fullAddress + "\')\n");
sb.append(";domainRuntime()\n");
sb.append(";cd(\'/ServerLifeCycleRuntimes/" + serverName + "\')\n");
sb.append(";cmo.shutdown())\n");
String command = sb.toString();

结果:

  

初始化WebLogic脚本工具(WLST)...
  欢迎使用WebLogic Server管理脚本Shell       输入help()以获取有关可用命令的帮助      WLS:/脱机&GT;

我手动测试了命令并且它有效。问题似乎是JSch与WLST接口,因为它打开另一个shell接口。

有关如何使用JSch运行WLST命令的任何想法吗?

PS1:我知道我的JSch代码有效,因为我在同一个app上有一个要部署的功能。基本上,它运行jscp来上传war,然后运行ssh来执行weblogic.Deployer -deploy命令。

PS2:我确实有一个.py脚本来执行此操作,但截至目前,它必须在服务器上才能执行。我正在考虑对临时文件夹执行jscp,运行脚本然后删除。但我很想知道如何使用JSch在WLST上运行多个命令。

提前致谢。

更新

代码工作(感谢Martin)

    Channel channel = session.openChannel("exec");
    ((ChannelExec) channel).setCommand(command);

    InputStream in = channel.getInputStream();
    OutputStream out = channel.getOutputStream();
    ((ChannelExec) channel).setErrStream(System.err);
    channel.connect();
    for (String wlstCommand : wlstCommands) {
        out.write((wlstCommand).getBytes());
    }
    out.flush();

1 个答案:

答案 0 :(得分:1)

;确实可以在基于* nix的系统中用于在一个shell命令行中执行多个命令。

但是你正在执行的不是shell命令。这些是WLST命令,对吧?因此,您必须将它们提供给WLST。

像这样:

Channel channel = session.openChannel("exec");
((ChannelExec) channel).setCommand("java -cp /.../weblogic.jar weblogic.WLST");
OutputStream out = channel.getOutputStream();
channel.connect();
out.write(("connect('weblogic'...)\n").getBytes());
out.write(("domainRuntime()\n").getBytes());
...

它与通用Providing input/subcommands to command executed over SSH with JSch基本相同。