我正在使用JSch在远程计算机上运行shell脚本,并使用JSch通道在我的日志文件中打印命令日志。问题是,当脚本结束时,我执行channel.disconnect,并在断开连接后不久,System.out停止打印到日志文件中。这是代码:
private int runShellScript(HashMap bundleDetails) {
int exitStatus = -1;
Channel channel = null;
Session session = null;
try {
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
String host = (String) bundleDetails.get("host");
String userName = (String) bundleDetails.get("userName");
String password = (String) bundleDetails.get("password");
String bundleName = findFileName((String) bundleDetails.get("bundleName"));
String sourceLocation = (String) bundleDetails.get("sourceLocation");
String logFileName = findFileName((String) bundleDetails.get("logFileName"));
String targetLocation = (String)bundleDetails.get("targetLocation");
String command1 = "sh "+(String) bundleDetails.get("targetIndexerLocation") + (String) bundleDetails.get("deployScript")+" "+
targetLocation + bundleName + " " +
targetLocation + logFileName;
JSch ssh = new JSch();
session = ssh.getSession(userName, host, 22);
session.setConfig(config);
session.setPassword(password);
session.connect();
channel = session.openChannel("exec");
((ChannelExec)channel).setCommand(command1);
channel.setInputStream(null);
((ChannelExec)channel).setErrStream(System.err);
InputStream in=channel.getInputStream();
channel.connect();
byte[] tmp=new byte[1024];
while(true){
//System.out.println("inside while second");
while(in.available()>0){
int i=in.read(tmp, 0, 1024);
if(i<0)break;
System.out.print("*****NEW ONE*****$$$$$**$$########"+new String(tmp, 0, i));
}
if(channel.isClosed()){
exitStatus = channel.getExitStatus();
System.out.println("Before Disconnected Here exit-status: "+exitStatus);
channel.disconnect();
System.out.println("Disconnected Here exit-status: "+exitStatus);
break;
}
}
//logger("runShellScript", "END");
System.out.println("***** out of infinite loop");
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException("Copy to remote location failed.... ");
}finally{
System.out.println("finally DISCONNECT channel and session");
if(channel!=null && channel.isConnected()){
channel.disconnect();
}
if(session!=null){
session.disconnect();
}
System.out.println("finally DISCONNECTED channel and session");
}
System.out.println("Before return exit-status: "+exitStatus);
return exitStatus;
}
日志文件中的行:
*****NEW ONE*****$$$$$**$$########Starting...
断开连接之前退出状态:0
如果您在上面粘贴的方法中看到,打印的sysout实际上是'channel.disconnect'上面的那个。它下面的那个没有打印! Al功能正确,总体输出是我期望的
System.out.println(“在断开连接之前退出状态: “+ exitStatus”;
channel.disconnect();
System.out.println(“Disconnected 这里退出状态:“+ exitStatus”;
所有功能都是正确的,总体输出是我所期望的。唯一的问题是日志冻结。我哪里错了?
修改
而且,我无法看到我最后一个块的消息!
答案 0 :(得分:2)
很可能与这一行有关:
((ChannelExec)channel).setErrStream(System.err);
通过这样做,您已将System.err流绑定到通道流。根据文档,默认情况下,在断开通道时关闭流。你没有说你正在运行什么平台,但我认为大多数平台以某种方式连接System.err和System.out,因此Jsch很可能在断开连接时关闭System.out。您可以尝试这样做以防止JSch关闭流:
((ChannelExec)channel).setErrStream(System.err, true);
即使这确实有效,我认为像这样挂钩System.err有点冒险。我认为更安全的设计是创建一个直接写入日志文件的流,而不是通过System.err。
答案 1 :(得分:0)
这是因为
((ChannelExec)channel).setErrStream(System.err);
当您断开频道连接时,连接的流也将断开连接。
因此,请在断开频道之前写下以下声明:
((ChannelExec)channel).setErrStream(null);