I am running the daemon java process on my ubuntu machine:
java -cp (...) &> err.log&
The process runs for an arbitrary period of time, and then simply disappears. Nothing in LOGs, err.log, a JVM emergency file (hs_err _ *. Log) is created, nothing. My two questions are:
1) Under what circumstances can the java process terminate?
2) Is there a way to find out what happened to the process (knowing the PID)? Does UNIX provide ready-made process information in any way?
source
share