I have quite large application, and now I'm seeing there's a bad memory leak, is there some sort of software, or something which allows me to see the current executed scripts and their size? I'm using apache if that helps.

Thanks.

link|improve this question

78% accept rate
feedback

1 Answer

Have you seen top(1)? The M key will sort by memory usage. Pay most attention to the RSS column, it shows you the Resident Set Size of the process -- roughly how much RAM the process is taking up.

link|improve this answer
the thing which takes most memory is /usr/sbin/httpd.event... I can also see it spawns alot of /usr/bin/php-cgi -c /var/www/vhosts/drawpr.com/etc/php.ini – Itai Sagi Nov 23 '11 at 14:16
That sounds like you're running PHP as a standard CGI handler. You might want to either use mod_php or, much better, FastCGI. That should help reduce system load. To hunt memory leaks in your PHP programs use memory_get_usage(). Good luck! – sarnold Nov 23 '11 at 23:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.