我是JSch的新手,我正在使用它连接到远程linux机器。我正在创建一个会话并打开一个通道来在linux机器上执行命令。此命令需要将近半个小时才能执行并提供输出。但会议在15分钟后到期。我需要会话才能处于活动状态,直到命令完成执行。如何让会话持续更长时间?
即使使用sendKeepAliveMsg()函数也不会使会话保持活动状态不超过15分钟。
我使用的代码如下
JSch jsch=new JSch();
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
Session session = null;
try
{
session = jsch.getSession(user,client_ip,22);
session.setPassword(secure_pwd);
session.setConfig(config);
session.connect();
session.sendKeepAliveMsg();
Channel channel = null;
channel = session.openChannel("exec");
((ChannelExec)channel).setCommand(command);
InputStream in = null;
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;
}
}
}
catch(Exception e)
{
System.out.println(e.toString());
}
提前致谢
答案 0 :(得分:0)
答案 1 :(得分:0)
您必须定期致电sendKeepAliveMsg
。
在开始时调用一次无效。