Limit number of concurrent connections in Apache2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:51:29Z http://stackoverflow.com/feeds/question/450606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450606/limit-number-of-concurrent-connections-in-apache2 0 Limit number of concurrent connections in Apache2 Mohit Nanda 2009-01-16T14:49:18Z 2009-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#450691 0 Answer by Eineki for Limit number of concurrent connections in Apache2 Eineki 2009-01-16T15:14:09Z 2009-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#450706 1 Answer by kgiannakakis for Limit number of concurrent connections in Apache2 kgiannakakis 2009-01-16T15:19:02Z 2009-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#1137825 0 Answer by babyLisper for Limit number of concurrent connections in Apache2 babyLisper 2009-07-16T14:03:45Z 2009-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>