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
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
_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
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
> *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
.
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
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
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