how to make tomcat 6 running mulitple domain with non ROOT application name - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:01:37Zhttp://stackoverflow.com/feeds/question/951474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/951474/how-to-make-tomcat-6-running-mulitple-domain-with-non-root-application-name0how to make tomcat 6 running mulitple domain with non ROOT application nameRoy Chan2009-06-04T16:02:09Z2009-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
<Engine name="Catalina" defaultHost="a.mydomain.com">
<Host name="a.mydomain.com" appBase="aapps" autoDeploy="true" unpackWars="true" />
<Host name="b.mydomain.com" appBase="bapps" autoDeploy="true" unpackWars="true" />
</Engine>
<Tomcat>/conf/Catalina/a.mydomain.com/ROOT.xml
<?xml version='1.0' encoding='utf-8'?>
<Context docBase="/opt/tomcat/aapps/portal" reloadable="true" path=""></Context>
<Tomcat>/conf/Catalina/b.mydomain.com/ROOT.xml
<?xml version='1.0' encoding='utf-8'?>
<Context docBase="/opt/tomcat/bapps/portal" reloadable="true" path=""></Context>
</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#10160790Answer by Amot for how to make tomcat 6 running mulitple domain with non ROOT application nameAmot2009-06-19T02:19:10Z2009-06-19T02:19:10Z<p>What do your workers.properties and context maps look like?</p>