Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个流氓 Apache 进程在 Centos 6 Linux 服务器上运行,它运行高达 55% 的 CPU,我想知道我如何才能准确地检查它正在执行什么功能?从'top'命令我有它的进程ID,但我怎样才能深入了解它在做什么呢?
谢谢
如果您真的想看看它在做什么,请熟悉 strace 命令。它将向您显示您的进程正在进行的系统调用,但我认为这将是一个找出性能问题的糟糕工具。为此,请看一下 gprof 之类的东西。