@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才能查看它.