断开连接后终止远程ssh命令

时间:2015-03-02 09:35:47

标签: ssh mina

我正在使用Mina SSHD客户端在OpenSSH服务器上运行远程命令。 我正在远程服务器上执行一个长时间运行的命令,并希望它在客户端会话关闭时终止。

当我从PC终端运行此命令时:

\#ssh -t user@server sleep 12345

这是我在远程机器上找到的:

\# ps -axf

---- Omitted for clarity

12158 ?        Ss     0:29 /usr/sbin/sshd -4
22708 ?        Ss     0:11  \\_ sshd: user@pts/3,pts/4
16894 pts/3    Ss     0:00  |   \\_ -bash
17750 pts/3    R+     0:00  |   |   \\_ ps -axf
17606 pts/4    Ss+    0:00  |   \\_ sleep 12345

---- Omitted for clarity

当我在我的机器上杀死ssh客户端时,'sleep 12345'终止于远程机器上。

然而,当我使用Mina Java SSH客户端运行时,我所看到的就是这样。

    SshClient client = SshClient.setUpDefaultClient();
    client.start();
    ConnectFuture connect = client.connect("user", "server", 22);

    connect.await(10000); //ms
    ClientSession session = connect.getSession();
    session.addPasswordIdentity("password");
    AuthFuture auth = session.auth();
    auth.await(10000);

    ClientChannel channel = session.createExecChannel("sleep 12345");

    OpenFuture open = channel.open();
    open.await(10000);
    Thread.sleep(15000); // ms, wait for command to run
    channel.close(true);
    session.close(true);
    client.stop();


\# ps -axf

---- Omitted for clarity

27364 ?        Ss     0:00  \\_ sshd: user@pts/0  
3277 pts/0    Ss     0:00  |   \\_ -bash
22306 pts/0    R+     0:00  |       \\_ ps axf
21699 ?        Ss     0:00  \\_ sshd: user@notty  
21796 ?        Ss     0:00      \\_ sleep 12345

---- Omitted for clarity

代码终止后,命令的父级变为init pid:

\# ps -axf 

21796 ?        Ss     0:00 sleep 12345


\#ps -ef | grep sleep

root     21796     1  0 08:26 ?        00:00:00 sleep 12345

Mina中是否有一些标志或选项导致它在关闭会话时终止我在远程服务器上的命令?

1 个答案:

答案 0 :(得分:2)

ssh -t user@server sleep 12345

由于“-t”选项,这为远程会话分配PTY(伪tty)。当ssh会话断开连接时,PTY将向连接到PTY的每个进程发送一个SIGHUP。这导致“睡眠”过程退出。

要从Mina会话获得相同的行为,请为该频道请求PTY。我之前没有和Mina合作过,但看起来这就是这样做的方法:

ChannelExec channel = session.createExecChannel("sleep 12345");
channel.setUsePty(true);
// Optionally set the PTY terminal type, lines, and columns
OpenFuture open = channel.open();
...

setUsePty()和其他PTY函数在PtyCapableChannelSession中定义,ChannelExec是{{3}}的父类。