linux – 我怎么知道apache进程在做什么?

前端之家收集整理的这篇文章主要介绍了linux – 我怎么知道apache进程在做什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_1@有时阿帕克疯了,吃掉我所有的记忆和交换,但我不知道如何找出导致它的Web应用程序.

ps给了我这个过程的输出; “不间断睡眠(通常是IO)”

www-data  1526  0.1 78.9 14928852 3191628 ?    D    Oct17   6:45 /usr/sbin/apache2 -k start

我怀疑Ruby Redmine,但我想确定

解决方法

确保你的apache模块中加载了mod_status.so然后查找/添加上面的httpd.conf:
# Uncomment the following lines to enable mod_status support:
#
ExtendedStatus On

<Location /server-status>
SetHandler server-status

Order Deny,Allow
Deny from all
Allow from YOUR_IP_HERE
</Location>

这将允许您在http服务器中查看正在使用的所有页面加载域.

要访问它,请使用http://your_ip/server-status,只有来自YOUR_IP_HERE的Allow中定义的ip才能查看它.

原文链接:https://www.f2er.com/linux/400434.html

猜你在找的Linux相关文章