Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Secure-Shell
[Top] [All Lists]

Re: Question on SSH hang on exit when running Java background process

Subject: Re: Question on SSH hang on exit when running Java background process
Date: Fri, 27 Apr 2007 17:04:57 +0000
Try using screen to launch the program in another session.  Screen will then 
let you disconnect cleanly while letting the program continue to run.

Geoff

Sent from my BlackBerry wireless handheld.  

-----Original Message-----
From: YU Jiazi <yujiazi@gmail.com>
Date: Fri, 27 Apr 2007 22:25:44 
To:secureshell@securityfocus.com
Subject: Question on SSH hang on exit when running Java background process

hi, all

I'm not sure if i should ask this question in this maillist, i am sorry 
if this mail bothered you. :)

My problem is that my SSH client hang on "exit" if I run a java program 
as a background process.
Here is the sample java program:

public class Test
{
    public static void main(String argv[])
    {
          try{
                while(true) {
                    System.out.println("Hello world");
                    Thread.sleep(1000);
                }
          } catch(Exception ex) {
                ex.printStackTrace();
          }
    }
}

then I save it as Test.java,  and compile, run it as follow in a 
terminal connected by ssh(my ssh client is putty 0.58):

javac Test.java
java -cp . Test &
exit

then putty hang, it seems that the SSH connection is still alive and 
waiting for the java program to exit.
If a close the putty and login the server again, i can see the program 
is still running.

This problem puzzled me a long time, since i have to run a server 
program written by java and I can't
exit ssh client normally. At first i guess it was caused by signals, by 
it seems that when i type "exit"  even
i close the ssh client, the program didn't get a SIGHUP signal,  or it 
would exit by receiving a SIGHUP.

Anyway, could anyone help me on this problem?



<Prev in Thread] Current Thread [Next in Thread>