如何查找被Linux OOM killer杀死的进程?


为了找出哪个进程被Linux OOM killer杀死,我们将使用Linux提供的grep命令。但首先我们需要了解什么是grep命令以及如何在Linux上使用它。

Linux中的grep命令用于在一个文件中过滤搜索特定字符模式。它是Linux中最常用的实用程序命令之一,用于显示包含我们试图搜索的模式的行。

通常,我们试图在文件中搜索的模式被称为正则表达式。

语法

grep [options] pattern [files]

虽然有很多不同的选项可供我们使用,但一些最常用的选项是:−

-c : It lists only a count of the lines that match a pattern
-h : displays the matched lines only.
-i : Ignores, case for matching
-l : prints filenames only
-n : Display the matched lines and their line numbers.
-v : It prints out all the lines that do not match the pattern

现在,让我们考虑一个案例,我们想在一个特定目录(例如dir1)中的所有文件中查找特定模式。

语法

grep -rni "word" *

在上面的命令中,用…替换“word”占位符

为此,我们使用如下命令:

grep -rni "func main()" *

上面的命令将尝试在一个特定目录以及其子目录中的所有文件中查找字符串“func main()”。

输出

main.go:120:func main() {}

需要注意的是,存储被杀死进程信息的日志通常位于Linux机器上的/var/log目录中。

为了检查哪些进程被杀死,我们可以使用以下命令。

命令

grep -i 'killed process' /var/log/syslog

输出

[11686.043647] Killed process 2603 (ssrv) total-vm:149536kB, anon-rss:72174kB, file-rss:4228kB

更新于:2021年7月29日

733 次浏览

开启你的职业生涯

通过完成课程获得认证

开始学习
广告