Limit number of concurrent connections in Apache2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:51:29Zhttp://stackoverflow.com/feeds/question/450606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/450606/limit-number-of-concurrent-connections-in-apache20Limit number of concurrent connections in Apache2Mohit Nanda2009-01-16T14:49:18Z2009-07-16T14:03:45Z
<p>Is there a way I can limit the number of concurrent connections to the Web Application running on my Apache Server.</p>
<p><strong>My server version is Apache 2.2.11</strong></p>
http://stackoverflow.com/questions/450606/limit-number-of-concurrent-connections-in-apache2/450691#4506910Answer by Eineki for Limit number of concurrent connections in Apache2Eineki2009-01-16T15:14:09Z2009-01-16T15:14:09Z<p>I'm not sure if it will useful to you but definitely worth a chance.</p>
<p>Maybe you can use the directives
<a href="http://httpd.apache.org/docs/1.3/mod/core.html#maxclients" rel="nofollow">MaxClients</a> and
<a href="http://httpd.apache.org/docs/1.3/mod/core.html#listenbacklog" rel="nofollow">ListenBackLog</a></p>
<p>Although they apply to the concurrent access to the entire server, not only your application, and on a resource base.</p>
http://stackoverflow.com/questions/450606/limit-number-of-concurrent-connections-in-apache2/450706#4507061Answer by kgiannakakis for Limit number of concurrent connections in Apache2kgiannakakis2009-01-16T15:19:02Z2009-01-16T15:19:02Z<p>Have a look at <a href="http://dominia.org/djao/limitipconn.html" rel="nofollow">limitipconn</a> module.</p>
http://stackoverflow.com/questions/450606/limit-number-of-concurrent-connections-in-apache2/1137825#11378250Answer by babyLisper for Limit number of concurrent connections in Apache2babyLisper2009-07-16T14:03:45Z2009-07-16T14:03:45Z<p>We completely built an application layer thing that stored, checked and restricted the limit on # of application users that could be logged on concurrently.</p>
<p>If it got exceeded, we sent them to a 'waiting room' - worked like a charm.</p>
<p>So it was all application managed - we had multiple apache servers in a cluster.</p>
<p>We were not using the Zend clustering stuff , IMO.</p>