Issue
When Linux runs out of memory (OOM), the OOM killer chooses a process to kill based on some heuristics (it's an interesting read: rel="noreferrer">http://lwn.net/Articles/317814/).
How can one programmatically determine which processes have recently been killed by the OOM killer?
Solution
Try this out:
grep -i 'killed process' /var/log/messages
Answered By - John Feminella Answer Checked By - Timothy Miller (WPSolving Admin)