Apache/Tomcat error - wrong pages being delivered - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:35:26Z http://stackoverflow.com/feeds/question/246540 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered 3 Apache/Tomcat error - wrong pages being delivered Marcus Downing 2008-10-29T12:03:33Z 2009-11-16T17:49:16Z <p>This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens where people are served the wrong page - <strong>the page that <em>somebody else</em> requested!</strong></p> <p>Clues:</p> <ul> <li>The pages being delivered are those that another user requested recently, and are otherwise delivered correctly. It's been known for two simultaneous requests to be swapped. As far as I can tell, none of the pages being incorrectly delivered are older than a few minutes.</li> <li>It only affects the files that are being served by Tomcat. Static files like images are unaffected.</li> <li>It doesn't happen all the time. When it does happen, it happens for everybody.</li> <li>It seems to happen at times of peak demand. However, the demand is not yet very high - it's certainly well within the bounds of what Apache can cope with.</li> <li>Restarting Tomcat fixed it, but only for a few minutes. Restarting Apache fixed it, but only for a few minutes.</li> <li>The server is running Apache 2 and Tomcat 6, using a Java 6 VM on Gentoo. The connection is with AJP13, and <code>JkMount</code> directives within <code>&lt;VirtualHost&gt;</code> blocks are correct.</li> <li>There's nothing of use in any of the log files.</li> </ul> <p><hr /></p> <p><strong>Further information:</strong></p> <p>Apache does not have any form of caching turned on. All the caching-related entries in httpd.conf and related imports say, for example:</p> <pre><code>&lt;IfDefine CACHE&gt; LoadModule cache_module modules/mod_cache.so &lt;/IfDefine&gt; </code></pre> <p>While the options for Apache don't include that flag:</p> <pre><code>APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE -D SSL -D SSL_DEFAULT_VHOST -D PHP5 -D JK" </code></pre> <p>Tomcat likewise has no caching options switched on, that I can find.</p> <p><a href="http://stackoverflow.com/questions/246540/apachetomcat-error-wrong-pages-being-delivered#246566">toolkit's suggestion</a> was good, but not appropriate in this case. What leads me to believe that the error can't be within my own code is that it isn't simply a few values that are being transferred - it's the entire request, including the URL, parameters, session cookies, the whole thing. People are getting pages back saying "You are logged in as John", when they clearly aren't.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Based on suggestions from several people, I'm going to add the following HTTP headers to Tomcat-served pages to disable all forms of caching:</p> <pre><code>Cache-Control: no-store Vary: * </code></pre> <p>Hopefully these headers will be respected not just by Apache, but also by any other caches or proxies that may be in the way. Unfortunately I have no way of deliberately reproducing this error, so I'm just going to have to wait and see if it turns up again.</p> <p>I notice that the following headers are being included - could they be related in any way?</p> <pre><code>Connection: Keep-Alive Keep-Alive: timeout=5, max=66 </code></pre> <p><hr /></p> <p><strong>Update:</strong></p> <p>Apparently this happened again while I was asleep, but has stopped happening now I'm awake to see it. Again, there's nothing useful in the logs that I can see, so I have no clues to what was actually happening or how to prevent it.</p> <p>Is there any extra information I can put in Apache or Tomcat's logs to make this easier to diagnose?</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Since this has happened again a couple of times, we've changed how Apache connects to Tomcat to see if it affects things. We were using <code>mod_jk</code> with a directive like this:</p> <pre><code>JkMount /portal ajp13 </code></pre> <p>We've switched now to using <code>mod_proxy_ajp</code>, like so:</p> <pre><code>ProxyPass /portal ajp://localhost:8009/portal </code></pre> <p>We'll see if it makes any difference. This error was always annoyingly unpredictable, so we can never definitively say if it's worked or not.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>We just got the error briefly on a site that was left using <code>mod_jk</code>, while a sister site on the same server using <code>mod_proxy_ajp</code> didn't show the error. This doesn't prove anything, but it does provide evidence that swithing to <code>mod_proxy_ajp</code> may have helped.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>We just got the error again last night on a site using <code>mod_proxy_ajp</code>, so clearly that hasn't solved it - <code>mod_jk</code> wasn't the source of the problem. I'm going to try the anonymous suggestion of turning off persistent connections:</p> <pre><code>KeepAlive Off </code></pre> <p>If that fails as well, I'm going to be desperate enough to start investigating GlassFish.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Dammit! The problem just came back. I hadn't seen it in a while, so I was starting to think we'd finally sorted it. I hate heisenbugs.</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/246566#246566 2 Answer by toolkit for Apache/Tomcat error - wrong pages being delivered toolkit 2008-10-29T12:14:51Z 2008-10-29T17:31:18Z <p>Could it be the thread-safety of your servlets?</p> <p>Do your servlets store any information in instance members.</p> <p>For example, something as simple as the following may cause thread-related issues:</p> <pre><code>public class MyServlet ... { private String action; public void doGet(...) { action = request.getParameter("action"); processAction(response); } public void processAction(...) { if (action.equals("foo")) { // send foo page } else if (action.equals("bar")) { // send bar page } } } </code></pre> <p>Because the serlvet is accessed by multiple threads, there is no guarantee that the action instance member will not be clobbered by someone elses request, and end up sending the wrong page back.</p> <p>The simple solution to this issue is to use local variables insead of instance members:</p> <pre><code>public class MyServlet ... { public void doGet(...) { String action = request.getParameter("action"); processAction(action, response); } public void processAction(...) { if (action.equals("foo")) { // send foo page } else if (action.equals("bar")) { // send bar page } } } </code></pre> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/247684#247684 0 Answer by toolkit for Apache/Tomcat error - wrong pages being delivered toolkit 2008-10-29T17:28:30Z 2008-10-29T17:28:30Z <p>I'm no expert, but could it be some weird <a href="http://en.wikipedia.org/wiki/Network_address_translation" rel="nofollow">Network Address Translation</a> issue?</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/248724#248724 3 Answer by CesarB for Apache/Tomcat error - wrong pages being delivered CesarB 2008-10-29T23:00:11Z 2008-10-29T23:00:11Z <p>Check if your headers allow caching without the correct <code>Vary</code> HTTP header (if you use session cookies, for instance, and allow caching, you need an entry in the <code>Vary</code> HTTP header for the cookie header, or a cache/proxy might serve the cached version of a page intended for one user to another user).</p> <p>The problem might be not with caching on your web server, but on another layer of caching (either on a reverse proxy in front of your web server, or on a proxy near the users). If the clients are behing a NAT, they might also be behind a transparent proxy (and, to make things even harder to debug, the transparent proxy might be configured to not be visible in the headers).</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/296039#296039 0 Answer by kwinton for Apache/Tomcat error - wrong pages being delivered kwinton 2008-11-17T16:22:20Z 2008-11-17T16:22:20Z <p>We this we have been experiencing the same thing...have you any more recent updates to your issue?</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/479020#479020 1 Answer by unknown (yahoo) for Apache/Tomcat error - wrong pages being delivered unknown (yahoo) 2009-01-26T07:08:57Z 2009-01-26T17:19:11Z <p>I had this problem and it really drove me nuts. I dont know why, but I solved it turning off the Keep Alive on the http.conf</p> <p>from</p> <p>KeepAlive On</p> <p>to </p> <p>KeepAlive Off</p> <p>My application doesn't use the keepalive feature, so it worked very well for me.</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/657602#657602 0 Answer by marius for Apache/Tomcat error - wrong pages being delivered marius 2009-03-18T09:53:05Z 2009-03-18T09:53:05Z <p>Hey! I've been experiencing the same or a very similar problem:</p> <ul> <li>sometimes I get the stylesheet.jsp being serverd as the index.jsp page</li> <li>sometimes I get some javascript .jsp files being server as the stylesheet.jsp</li> </ul> <p>I am also tearing my head off.</p> <p>Did the "KeepAlive off" option do the trick for you? </p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/764922#764922 1 Answer by cherouvim for Apache/Tomcat error - wrong pages being delivered cherouvim 2009-04-19T05:59:35Z 2009-04-19T05:59:35Z <p>Try this:</p> <pre><code>response.setHeader("Cache-Control", "no-cache"); //HTTP 1.1 response.setHeader("Pragma", "no-cache"); //HTTP 1.0 response.setDateHeader("Expires", 0); //prevents caching at the proxy server </code></pre> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/764996#764996 2 Answer by Olaf for Apache/Tomcat error - wrong pages being delivered Olaf 2009-04-19T07:06:09Z 2009-04-19T07:06:09Z <p>8 updates of the question later one more issue to use to test/reproduce, albeit it might be difficult (or expensive) for public sites.</p> <p>You could enable https on the sites. This would at least wipe out any other proxies caches along the way. It'd be bad to see that there are some forgotten loadbalancers or company caches on the way that interfere with your traffic.</p> <p>For public sites this would imply trusted certificates on the keys, so some money will be involved. For testing self-signed keys might suffice. Also, check that there's no transparent proxy involved that decrypts and reencrypts the traffic. (they are easily detectable, as they can't use the same certificate/key as the original server)</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/1004697#1004697 1 Answer by Joel Byler for Apache/Tomcat error - wrong pages being delivered Joel Byler 2009-06-17T01:42:52Z 2009-06-17T01:42:52Z <p>Have a look at this site, it describes an issue with mod_jk. I came accross your posting while looking at a very similar issue. Basically the fix is to upgrade to a newer version of mod_jk. I haven't had a chance to implement the change in our server yet, but I'm going to try this tomorrow and see if it helps. </p> <p><a href="http://securitytracker.com/alerts/2009/Apr/1022001.html" rel="nofollow">http://securitytracker.com/alerts/2009/Apr/1022001.html</a></p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/1343458#1343458 0 Answer by Raimund Sacherer for Apache/Tomcat error - wrong pages being delivered Raimund Sacherer 2009-08-27T19:59:18Z 2009-08-27T19:59:18Z <p>Hello Marcus Downing,</p> <p>i have the same problem at a government department where we use Zimbra (mail solution) behind an apache proxy server.</p> <p>We use the normal proxy (not the ajp one). I will try all the suggestions you tried here, but can you tell me if these (keepalive, etc.) held up until know? </p> <p>What proxy constellation are you using right now? still ajp? or standard apache proxy?</p> <p>thanks, best Ray</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/1743757#1743757 0 Answer by Marcus Downing for Apache/Tomcat error - wrong pages being delivered Marcus Downing 2009-11-16T17:49:16Z 2009-11-16T17:49:16Z <p>We switched Apache from proxying with AJP to proxying with HTTP. So far it appears to have solved the issue, or at least vastly reduced it - the problem hasn't been reported in months, and the app's use has increased since then.</p> <p>The change is in Apache's httpd.conf. Having started with <code>mod_jk</code>:</p> <pre><code>JkMount /portal ajp13 </code></pre> <p>We switched to <code>mod_proxy_ajp</code>:</p> <pre><code>ProxyPass /portal ajp://localhost:8009/portal </code></pre> <p>Then finally to straight <code>mod_proxy</code>:</p> <pre><code>ProxyPass /portal http://localhost:8080/portal </code></pre> <p>You'll need to make sure Tomcat is set up to serve HTTP on port 8080. And remember that if you're serving <code>/</code>, you need to include <code>/</code> on both sides of the proxy or it starts crying:</p> <pre><code>ProxyPass / http://localhost:8080/ </code></pre>