Re: [EMAIL PROTECTED] Memory usage in Apache

2007-05-11 Thread Arnab Ganguly
My next question is I hve kept the ServerLimit and StartServers as 1 but once the Apache runs for say around 20hrs with good traffic, it still launches one more daemon process...Why this behavior is happening I am not sure. The modules that I have loaded are the cgi module, server-status

[EMAIL PROTECTED] Memory consumption by process increases in Apache

2007-05-10 Thread Arnab Ganguly
Hi, How is the memory handled in Apache.I see the daemon process launched by Apache, as it runs for a long time both its SZ and RSS increases over the period of time.Is there any memory issues in Apache?What should I do to take care of it?I have kept the MaxRequestPerChild as 0.Looking forward

[EMAIL PROTECTED] Memory usage in Apache

2007-05-10 Thread Arnab Ganguly
Hi, How is the memory handled in Apache.I see the daemon process launched by Apache, as it runs for a long time both its SZ and RSS increases over the period of time.Is there any memory issues in Apache?What should I do to take care of it?I have kept the MaxRequestPerChild as 0.Looking forward

[EMAIL PROTECTED] Query on MaxRequestperChild

2007-05-07 Thread Arnab Ganguly
Hi All, I have made the MaxRequestsPerChild set to zero but I still see the child process to getting killed by either SIGBUS (10) or SIGSEV(11) and apache launches a new daemon.This happens approximately if it gets hit by 1 request with 800 concurrent users.Looking forward for response.

[EMAIL PROTECTED] one more on MaxRequestPerChild

2007-05-07 Thread Arnab Ganguly
Hi All, Is it possible that Apache launches a new process due to overlaod even before the MaxRequestPerChild is met? Thanks -A

Re: [EMAIL PROTECTED] Query on StartServers and ListenBackLog

2007-04-28 Thread Arnab Ganguly
Slive [EMAIL PROTECTED] wrote: On 4/28/07, Arnab Ganguly [EMAIL PROTECTED] wrote: Hi All, I have some queries on the StartServers param.As it says The StartServers directive sets the number of child server processes created on startup. As the number of processes is dynamically controlled depending

[EMAIL PROTECTED] Query on StartServers and ListenBackLog

2007-04-27 Thread Arnab Ganguly
Hi All, I have some queries on the StartServers param.As it says The StartServersdirective sets the number of child server processes created on startup. As the number of processes is dynamically controlled depending on the load, there is usually little reason to adjust this parameter from the

[EMAIL PROTECTED] Memory occupied and number of files open

2007-04-19 Thread Arnab Ganguly
Hi, How much Apache occupies memory and number of files it opens for each client request of the MaxClient value?If it is dependent on the system , how do we find out?Looking forward for your response. Thanks -A

Re: [EMAIL PROTECTED] Signal 11 (SIGSEV) and signal 10 (SIGBUS)

2007-04-18 Thread Arnab Ganguly
signals.Please correct me if I am wrong. Thanks -A On 4/18/07, POLONKAI Gergely [EMAIL PROTECTED] wrote: Hi, I was experiencing the same problem, on an Ubuntu Dapper system. Maybe it is an ubuntu-specific problem? Gergely POLONKAI Arnab Ganguly írta: Hi All, I am getting the following

[EMAIL PROTECTED] Apache kills the daemon and relaunches

2007-04-16 Thread Arnab Ganguly
Hi All, I am running Apache 2.2 worker.When it is run for a long time I see it kills one of the daemon process with the following signal and launches another daemon.The transaction remains same but only the process id gets changed as the previous process id was killed. When does a Apache kills a

[EMAIL PROTECTED] Apache kills the daemon and relaunches

2007-04-16 Thread Arnab Ganguly
Hi All, I am running Apache 2.2 worker.When it is run for a long time I see it kills one of the daemon process with the following signal (exit signal Segmentation fault) and launches another daemon.The transaction remains same but only the process id gets changed as the previous process id was

[EMAIL PROTECTED] Doubt on configuration

2007-04-11 Thread Arnab Ganguly
Hi, Following is the configuration I am using. IfModule worker.c ServerLimit 2 StartServers 1 ThreadLimit 256 MaxClients 256 MinSpareThreads 1 MaxSpareThreads 256 ThreadsPerChild 256 MaxRequestsPerChild 0 /IfModule It launches two daemon (PIDs 25578 and 25579) and one root (25577). After it

[EMAIL PROTECTED] Doubt

2007-04-11 Thread Arnab Ganguly
Hi, When do we get the following error Too many open files: apr_socket_accept: (client socket).Where are these files opened. Thanks -A

[EMAIL PROTECTED] Apache Crashing

2007-04-03 Thread Arnab Ganguly
Hi, I was using the command line tool present under the /httpd-2.2.3/support/ab I ran from the command prompt ./ab -n 5000 -c 130 -v 50 http://localhost/index.html.ie 5000 total request and 130 concurrently. Apache version used is Apache 2.2 with Worker as MPM and OS as sun 5.9. The error I got

Re: [EMAIL PROTECTED] Running two apaches on different ports

2007-04-03 Thread Arnab Ganguly
You can try out the multiple instance also with the same Apache binary.Butdiff config files.While starting use the ./httpd -k start -f path and location of the new configuration file. Thanks -A On 4/3/07, Anthony Smith [EMAIL PROTECTED] wrote: I thought this would be easy, but I must be doing

Re: [EMAIL PROTECTED] Info when the MaxClient is reached

2007-04-02 Thread Arnab Ganguly
, min_spare_threads and MaxClients.This error seems that all the workers are busy and then there is nothing no idle worker. Thanks in advance. Regards -A On 4/2/07, Sander Temme [EMAIL PROTECTED] wrote: Hi Arnab, On Apr 1, 2007, at 9:53 PM, Arnab Ganguly wrote: Want some info when the MaxClient value

[EMAIL PROTECTED] Some more info wanted on the MaxClient

2007-04-02 Thread Arnab Ganguly
Hi All, Want some info when the MaxClient value is reached, what would happen to Apache webserver?Is that particular of time if we ping apache it will time out.How long will it take to recover or the requests will be queued? Can you tell me is there any configurable parameter in NES similar to

[EMAIL PROTECTED] Info when the MaxClient is reached

2007-04-01 Thread Arnab Ganguly
Hi All, Want some info when the MaxClient value is reached, what would happen to Apache webserver?Is that particular of time if we ping apache it will time out.How long will it take to recover or the requests will be queued? Can you tell me is there any configurable parameter in NES similar to

Re: [EMAIL PROTECTED] Help on MaxClients setting, consider raising the MaxClients setting

2007-03-31 Thread Arnab Ganguly
it out. One more thing how do u set the ExtendedStatus in the config file. A Thanks in advance -A On 3/31/07, Sander Temme [EMAIL PROTECTED] wrote: Arnab, On Mar 30, 2007, at 11:21 PM, Arnab Ganguly wrote: What I saw was the ServerLimit value = 2 when I kept I saw one root and two daemon

[EMAIL PROTECTED] Help on MaxClients setting, consider raising the MaxClients setting

2007-03-30 Thread Arnab Ganguly
Hi All, Apache version used here is 2.2. I have developed a module which acts a plugin to the apache.My requirement is that all the request is going to be handled by single process and multi-threaded.I am using MPM=worker.Themodule is working fine.But in the error log I get the following error as

Re: [EMAIL PROTECTED] Help on MaxClients setting, consider raising the MaxClients setting

2007-03-30 Thread Arnab Ganguly
. Thanks in advance. -A On 3/30/07, Joshua Slive [EMAIL PROTECTED] wrote: On 3/30/07, Arnab Ganguly [EMAIL PROTECTED] wrote: Hi All, Apache version used here is 2.2. I have developed a module which acts a plugin to the apache.My requirement is that all the request is going to be handled

<    1   2