Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread Jonas Eckerman
BipinDas-Gmail wrote: My goal is to set up this server for serving around 2000 connections simultaneously with minimum load. Any more changes to be needed ? Do you need to have 2000 simultaneous *open* connections, or do you simply need to serve 2000 users simultaneously visiting your web si

RE: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread BipinDas-Gmail
Thanks for your nice help. I got what the problem now.. Greetings BipinDas From: Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] Sent: Wednesday, May 20, 2009 11:31 AM To: users@httpd.apache.org Subject: Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread Prasanna Ram Venkatachalam
_FILE="conf/mime.types" > > -D SERVER_CONFIG_FILE="conf/httpd.conf" > > > > Thanks for your time. > > > > *Greetings * > > *BipinDas* > > > > *From:* Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] > *Sent:* Wednesday, May 20, 2

RE: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread BipinDas-Gmail
ot; -D SERVER_CONFIG_FILE="conf/httpd.conf" Thanks for your time. Greetings BipinDas From: Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] Sent: Wednesday, May 20, 2009 10:11 AM To: users@httpd.apache.org Subject: Re: [us...@httpd] Apache hangs when maximum conn

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-20 Thread Prasanna Ram Venkatachalam
> *BipinDas* > > > > *From:* Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] > *Sent:* Wednesday, May 20, 2009 4:47 AM > *To:* users@httpd.apache.org > *Subject:* Re: [us...@httpd] Apache hangs when maximum connection beyond > 2000 > > > > Also in pref

RE: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread BipinDas-Gmail
. Greetings BipinDas From: Prasanna Ram Venkatachalam [mailto:vpra...@gmail.com] Sent: Wednesday, May 20, 2009 4:47 AM To: users@httpd.apache.org Subject: Re: [us...@httpd] Apache hangs when maximum connection beyond 2000 Also in prefork, MaxClients is 256 (ServerLimit also) which means at

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread Prasanna Ram Venkatachalam
Also in prefork, MaxClients is 256 (ServerLimit also) which means at max only 256 processes can run and serve 256 connections simultaneously. In your case 2000 well exceeds this. (i personally suggest worker rather than prefork since for 2000 connections even if you change the settings, processes r

Re: [us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread Prasanna Ram Venkatachalam
ServerLimit is 21 in worker and ThreadsPerChild is 25. So that means at MAX, 21 httpd will be running with with 25 threads each serving requests. I don't think it will serve 2000 connections simultaneously. Can you change it to 50 and 41 and see whether it works? (just a thought) Regards Prasanna

[us...@httpd] Apache hangs when maximum connection beyond 2000

2009-05-19 Thread BipinDas-Gmail
Hello Everybody I have a webserver running on Dell Poweredge Xeon Processor with 4GB Ram. There is only one website a learning management system called Moodle. Configuration of Apache is as follows. This is the Prefork Module. StartServers 8 MinSpareServers5 MaxSpareServers