0

We deployed multiple JVMs in a Linux System along with a Node.js and a mongod server instance. It is https enabled micro services architecture.

Some of the above listed processes are getting down randomly. There is no clue why they are down.

No OOM related log trace in /var/log syslog files, Is it possible for linux to kill the process other than OOM.

What are the possible syslog errors ? ( I have the complete /var/log files )

Where to look to identify the actual issue ? We have no clue on this... Sombody can help please to trace the process end to end

M. Gopal
  • 404
  • 4
  • 17

1 Answers1

0

Assuming you are starting these JVM processes in the background, did you use nohup to make sure they ignore SIGHUP? Also it would be wise to redirect the output of these processes to the output files. E.g.

nohup node server1.js >& server1.out &

And then you can investigate in those files for any possible messages if there are any.

asatsi
  • 452
  • 2
  • 5
  • We have this kind of setup only. will it give the message reg. the os kill of that particular process ? – M. Gopal Jul 28 '17 at 06:05
  • If it gets killed by SIGKILL for whatever reasons then the process won't get any chance to do anything about it and will die immediately. Didn't you see anything in the logs? – asatsi Jul 28 '17 at 11:55