
Signature
- Nat
www.bleeding.de | www.metal-germany.de
-= Bleeding for Metal | c/o Madhouse Of Cain =-
-= P.O. Box 39 23 | 30039 Hannover | Germany =-
> Now this process is a ssh commandline opening a ssh-tunnel over
> which I want to communicate. After this communication is done, I'd
[quoted text clipped - 8 lines]
> (method invoked for closing)
> proc.destroy();
> Unfortunately, I keep getting a NullPointerException from
> proc.destroy()
> - the process seems to have disappeared (but in fact it is still
> there).
If proc.destroy() causes NullPointerException, then I am certain that
proc is null. This has nothing to do with whether the child process is
still running, it has only to do with your handling of the "proc"
variable itself.
> I need to keep track of the process - but I cannot get a pid or
> something like that back from Runtime.exec() nor could I find any
> other useful Classes or Methods helping me there. Furthermore there
> is no way telling, whether the exec() has been successful at all, I
> think. Asking for the returnValue tells me the process has not yet
> exited. Humm.
The child process itself can tell you its pid. One simple way is to
run ssh from a script like this one (call this script from
Runtime.exec()):
#!/bin/sh
echo $$
exec ssh "$@"
The first line you read from proc.getInputStream() will contain the
pid of the child process.
However there are two simple ways to terminate the ssh process:
1. close its stdin stream (proc.getOutputStream().close())
or
2. send a newline followed by ~. (tilde dot).
(1) may not work in all cases, for example if ssh needs to wait for
forwarded X11 connections to terminate.
/gordon

Signature
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
Natanael Mignon - 24 May 2004 09:10 GMT
Hi Gordon,
>>Unfortunately, I keep getting a NullPointerException from
>>proc.destroy()
[quoted text clipped - 4 lines]
> still running, it has only to do with your handling of the "proc"
> variable itself.
Mh, I can hardly imagine that, but that may just be a problem of my
imagination (as it obviously is true). ;)
[...]
> However there are two simple ways to terminate the ssh process:
Thanks a lot, very good ideas!
Kind regards

Signature
- Nat
www.bleeding.de | www.metal-germany.de
-= Bleeding for Metal | c/o Madhouse Of Cain =-
-= P.O. Box 39 23 | 30039 Hannover | Germany =-