1

OOM killer just killed some process. I can know about it when the value of grep oom_kill /proc/vmstat increases.

How would I know which process exactly was killed (name, pid, owner and so on) and when exactly (timestamp)?

2 Answers 2

2

The crude, but easy way to know details on recent OOM-kill is to grep everywhere (proper log path may differ from distrib to distrib):

sudo dmesg -T | grep -Ei 'killed process|oom.killer'
sudo grep -Ei 'killed process|oom.killer' /var/log/messages /var/log/syslog 2>/dev/null

. means "any character" in regexp for grep, so it will find lines containing both "oom-killer" and "oom killer".

2>/dev/null on the end is needed to get rid of the "No such file or directory" error, if there is no such logfiles in your system.

1
  • Works on Ubuntu 22.04 and helped me a lot. Thanks!
    – Bouncner
    Commented Oct 27, 2023 at 23:39
1

Look for entries from OOM killer events in the logs.

sudo grep -i "oom-killer" /var/log/messages

Result looks something like this:

kernel: [timestamp] Out of memory: Kill process [process_name] ([process_pid]), UID [user_id]/[username], VmSize:[memory_size] kB, VmRSS:[resident_memory_size] kB, MemLimit:[memory_limit] kB
1
  • 2
    or /var/log/syslog. And some related events may be described with OOM killer or so, thus grep -i 'oom.kill' may be a good idea. Commented Sep 22, 2023 at 14:26

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .