HTTPD eating all RAM

2001-08-14 Thread Mike P. Mikhailov

Hello modperl,

  I'm useing Apache/1.3.12 (Unix) mod_perl/1.25 Embperl 1.3b7 under RH
  7.0. From request to request size of the httpd grows and eat all
  available RAM. Daemon run under -X option. My question is:
  
  how can I find out which exactly variable are eating RAM ?

  I'm absolutely sure that I'm not useing global variables.

-- 
Best regards,
 Mike  mailto:[EMAIL PROTECTED]





RE: HTTPD eating all RAM

2001-08-14 Thread

I would imagine that this is more related to Embperl and your code than it is to 
mod_perl.

Check out the Embperl docs to find out how to get debugging info turned on.  I've used 
it in the past and found it quite useful.

Mike P. Mikhailov [EMAIL PROTECTED] wrote:

Hello modperl,

  I'm useing Apache/1.3.12 (Unix) mod_perl/1.25 Embperl 1.3b7 under RH
  7.0. From request to request size of the httpd grows and eat all
  available RAM. Daemon run under -X option. My question is:
  
  how can I find out which exactly variable are eating RAM ?

  I'm absolutely sure that I'm not useing global variables.

-- 
Best regards,
 Mike  mailto:[EMAIL PROTECTED]



-- 
===
If you put three drops of poison into a 100 percent pure Java, you get - Windows. If 
you put a few drops of Java into Windows, you still have Windows.
 -- Sun Microsystems CEO, Scott McNealy




__
Your favorite stores, helpful shopping tools and great gift ideas. Experience the 
convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/

Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/




Re: HTTPD eating all RAM

2001-08-14 Thread Perrin Harkins

On Tue, 14 Aug 2001, Mike P. Mikhailov wrote:
   I'm useing Apache/1.3.12 (Unix) mod_perl/1.25 Embperl 1.3b7 under RH
   7.0. From request to request size of the httpd grows and eat all
   available RAM. Daemon run under -X option. My question is:
   
   how can I find out which exactly variable are eating RAM ?
 
   I'm absolutely sure that I'm not useing global variables.

You should read the guide at http://perl.apache.org/guide/ for more info
on memory growth.  Some growth over time is normal and you might want to
use Apache::SizeLimit to control it.

- Perrin