Re: How to keep the application running on the server

2001-08-21 Thread Matthew Jensen
This is a realy old post I found on the archives: > On Sun, Aug 27, 2000 at 02:05:07PM -0400, Andrew Majercik wrote: > > Applications "tie" themselves to the console window in a parent/child > > relationship. (once the parent goes away, so do all the children!) What you > > Actually, they are tie

RE: How to keep the application running on the server

2000-08-29 Thread Jay Chalfant
Billy Kantartzis [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 27, 2000 11:24 AM > To: Yasuhiro Kaizu; [EMAIL PROTECTED] > Subject: Re: How to keep the application running on the server > > > every process (programm) you are running on a unix > machine is a child of a master

Re: How to keep the application running on the server

2000-08-27 Thread Christopher Smith
On Sun, Aug 27, 2000 at 02:05:07PM -0400, Andrew Majercik wrote: > Applications "tie" themselves to the console window in a parent/child > relationship. (once the parent goes away, so do all the children!) What you Actually, they are tied to the process which spawned them (typically the shell)

Re: How to keep the application running on the server

2000-08-27 Thread Billy Kantartzis
every process (programm) you are running on a unix machine is a child of a master process in this case the telnet shell as soon as you cloce this everything initiated by this proces will die and that is what is happening. in my opinion you have 2 choices 1. you placeyour programm in the systems s

Re: How to keep the application running on the server

2000-08-27 Thread Andrew Majercik
Hello! Applications "tie" themselves to the console window in a parent/child relationship. (once the parent goes away, so do all the children!) What you need to do is detach the process from the terminal. One way of doing this is to run it as a daemon (if there are other ways, I do not kno

Re: How to keep the application running on the server

2000-08-27 Thread Claire Boussard
Yasuhiro Kaizu a écrit : > > Hello > > I want to run the Java application on the remote server (Red Hat Linux 6.2) > through the telnet. The application starts without problem, but if I close > the telnet window, the application on the server also stops. This means > that I must keep the telne