Bad Gateway 502 error with Apache mod_proxy and Tomcat - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:18:25Zhttp://stackoverflow.com/feeds/question/169453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat4Bad Gateway 502 error with Apache mod_proxy and TomcatAlex Miller2008-10-04T00:51:54Z2009-08-17T12:23:42Z
<p>We're running a web app on Tomcat 6 and Apache mod_proxy 2.2.3. Seeing a lot of 502 errors like this:</p>
<blockquote>
<p>Bad Gateway!
The proxy server received an invalid response from an upstream server.</p>
<p>The proxy server could not handle the request GET /the/page.do.</p>
<p>Reason: Error reading from remote server</p>
<p>If you think this is a server error, please contact the webmaster.</p>
<p>Error 502 </p>
</blockquote>
<p>Tomcat has plenty of threads, so it's not thread-constrained. We're pushing 2400 users via JMeter against the app. All the boxes are sitting inside our firewall on a fast unloaded network, so there shouldn't be any network problems. </p>
<p>Anyone have any suggestions for things to look at or try? We're heading to tcpdump next.</p>
<p>UPDATE 10/21/08: Still haven't figured this out. Seeing only a very small number of these under load. The answers below haven't provided any magical answers...yet. :)</p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat/169522#169522-1Answer by anjanb for Bad Gateway 502 error with Apache mod_proxy and Tomcatanjanb2008-10-04T01:45:59Z2008-10-04T01:45:59Z<p>hi Alex,</p>
<p>Look forward to hearing from you what solution you find. Pls. post it here.</p>
<p>BR,<BR>
~A</p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat/169670#1696702Answer by Dave Cheney for Bad Gateway 502 error with Apache mod_proxy and TomcatDave Cheney2008-10-04T03:17:01Z2008-10-04T03:17:01Z<p>I'm guessing your using mod_proxy_http (or proxy balancer).</p>
<p>Look in your tomcat logs (localhost.log, or catalina.log) I suspect your seeing an exception in your web stack bubbling up and closing the socket that the tomcat worker is connected to.</p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat/331179#3311793Answer by Alex Miller for Bad Gateway 502 error with Apache mod_proxy and TomcatAlex Miller2008-12-01T15:30:52Z2008-12-01T15:30:52Z<p>So, answering my own question here. We ultimately determined that we were seeing 502 and 503 errors in the load balancer due to Tomcat threads timing out. In the short term we increased the timeout. In the longer term, we fixed the app problems that were causing the timeouts in the first place. Why Tomcat timeouts were being perceived as 502 and 503 errors at the load balancer is still a bit of a mystery.</p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat/1287662#12876620Answer by Janning for Bad Gateway 502 error with Apache mod_proxy and TomcatJanning2009-08-17T12:23:42Z2009-08-17T12:23:42Z<p>You can use
proxy-initial-not-pooled</p>
<p>See <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fproxy%5Fhttp.html" rel="nofollow">http://httpd.apache.org/docs/2.2/mod/mod%5Fproxy%5Fhttp.html</a> :</p>
<blockquote>
<p>If this variable is set no pooled connection will be reused if the client connection is an initial connection. This avoids the "proxy: error reading status line from remote server" error message caused by the race condition that the backend server closed the pooled connection after the connection check by the proxy and before data sent by the proxy reached the backend. It has to be kept in mind that setting this variable downgrades performance, especially with HTTP/1.0 clients.</p>
</blockquote>
<p>We had this problem, too. We fixed it by adding
SetEnv proxy-nokeepalive 1
SetEnv proxy-initial-not-pooled 1
and truning keepAlive on all servers off.</p>
<p>mod_proxy_http is fine in most szenarios but we are running it with heavy load and we still got some timeout problems we do not understand. </p>
<p>But see if the above directive fits your needs.</p>