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
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
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
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)