I have a parent JVM (which I'll call JVM_parent) and inside it I launched another JVM using Runtime.getRuntime().exec("java .......")
(which I'll call JVM_child)
Now when I shutdown (either gracefully or forcefully) JVM_parent, the JVM_child also exits.
How can I prevent the JVM_child from being shut down when the JVM_parent is shut down? I'm running on Linux.