how to make tomcat 6 running mulitple domain with non ROOT application name - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:01:37Z http://stackoverflow.com/feeds/question/951474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/951474/how-to-make-tomcat-6-running-mulitple-domain-with-non-root-application-name 0 how to make tomcat 6 running mulitple domain with non ROOT application name Roy Chan 2009-06-04T16:02:09Z 2009-08-26T19:28:17Z <p>Hi Gurus,</p> <p>I am trying to run multiple domain on a tomcat 6 on a linux server.</p> <p>I got 404 Errors when I follow the steps here <a href="http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html" rel="nofollow">http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html</a></p> <p>Here is the conf</p> <pre><code>server.xml &lt;Engine name="Catalina" defaultHost="a.mydomain.com"&gt; &lt;Host name="a.mydomain.com" appBase="aapps" autoDeploy="true" unpackWars="true" /&gt; &lt;Host name="b.mydomain.com" appBase="bapps" autoDeploy="true" unpackWars="true" /&gt; &lt;/Engine&gt; &lt;Tomcat&gt;/conf/Catalina/a.mydomain.com/ROOT.xml &lt;?xml version='1.0' encoding='utf-8'?&gt; &lt;Context docBase="/opt/tomcat/aapps/portal" reloadable="true" path=""&gt;&lt;/Context&gt; &lt;Tomcat&gt;/conf/Catalina/b.mydomain.com/ROOT.xml &lt;?xml version='1.0' encoding='utf-8'?&gt; &lt;Context docBase="/opt/tomcat/bapps/portal" reloadable="true" path=""&gt;&lt;/Context&gt; </code></pre> <p>What am I doing wrong here?</p> <p>by the way, tomcat auto generated a portal.xml in the /conf/Catalina/a.mydomain.com/</p> http://stackoverflow.com/questions/951474/how-to-make-tomcat-6-running-mulitple-domain-with-non-root-application-name/1016079#1016079 0 Answer by Amot for how to make tomcat 6 running mulitple domain with non ROOT application name Amot 2009-06-19T02:19:10Z 2009-06-19T02:19:10Z <p>What do your workers.properties and context maps look like?</p>