Tomcat deployment - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:15:24Z http://stackoverflow.com/feeds/question/142548 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/142548/tomcat-deployment 3 Tomcat deployment Milhous 2008-09-27T00:02:14Z 2009-06-01T10:30:01Z <p>Is there a way, given a war file, to deploy on a tomcat server. I want to do this without having to use the web interface.</p> http://stackoverflow.com/questions/142548/tomcat-deployment/142554#142554 0 Answer by anjanb for Tomcat deployment anjanb 2008-09-27T00:05:43Z 2008-09-27T00:05:43Z <p>you can edit the conf/server.xml and add an entry like this pointing to your war directory </p> <p>ELSE you can copy your .WAR file to the webapps directory of tomcat.</p> http://stackoverflow.com/questions/142548/tomcat-deployment/142556#142556 0 Answer by anjanb for Tomcat deployment anjanb 2008-09-27T00:06:19Z 2008-09-27T00:06:19Z <p>forgot the entry in the server.xml . here it is</p> <pre><code> &lt;Context path="/strutsDisplayTag" reloadable="true" docBase="C:\work\learn\jsp\strutsDisplayTag" workDir="C:\work\learn\jsp\strutsDisplayTag\work" /&gt; </code></pre> http://stackoverflow.com/questions/142548/tomcat-deployment/142570#142570 4 Answer by Joe Dean for Tomcat deployment Joe Dean 2008-09-27T00:10:56Z 2008-09-27T00:10:56Z <p>Just copy the war file into the $TOMCAT_HOME/webapps/ directory. Tomcat will deploy the war file by automatically exploding it. FYI - If you want you can make updates directly to the exploded directory, which is useful for development.</p> http://stackoverflow.com/questions/142548/tomcat-deployment/142579#142579 1 Answer by dacracot for Tomcat deployment dacracot 2008-09-27T00:13:28Z 2008-09-27T00:13:28Z <p>We never use the web interface, don't like it. The wars are dropped in the webapps and server.xml edited as necessary. You need to bounce it if you edit the server.xml, but the war file should be picked up automagically. We generally delete the directory expanded from the war first so there is no confusion from where the components came.</p> http://stackoverflow.com/questions/142548/tomcat-deployment/142631#142631 1 Answer by John Meagher for Tomcat deployment John Meagher 2008-09-27T00:37:52Z 2008-09-27T00:37:52Z <p>The Tomcat <a href="http://tomcat.apache.org/tomcat-5.5-doc/deployer-howto.html#Deploying%20using%20the%20Client%20Deployer%20Package" rel="nofollow">Client Deployer Package</a> looks to be what you need to deploy to a remote server from the command line. From the page:</p> <blockquote> <p>This is a package which can be used to validate, compile, compress to .WAR, and deploy web applications to production or development Tomcat servers. It should be noted that this feature uses the Tomcat Manager and as such the target Tomcat server should be running.</p> </blockquote> http://stackoverflow.com/questions/142548/tomcat-deployment/143267#143267 9 Answer by Aleksandar Dimitrov for Tomcat deployment Aleksandar Dimitrov 2008-09-27T08:56:37Z 2008-09-27T08:56:37Z <p>There are several ways to deploy a Tomcat webapp:</p> <ul> <li>Dropping into $CATALINA_HOME/webapps, as was already mentioned.</li> <li>Using your build scripts to deploy automatically via the manager interface (that comes with Tomcat). Here are the two ways <ul> <li>for <em>Maven</em>: use the tomcat plugin. You don't need to include it in <code>pom.xml</code>, just issue the goal <code>mvn tomcat:deploy</code>, the plugin is included in Maven 2. This assumes several defaults explained in the <a href="http://mojo.codehaus.org/tomcat-maven-plugin/" rel="nofollow">documentation</a>, you can <a href="http://mojo.codehaus.org/tomcat-maven-plugin/usage.html" rel="nofollow">configure</a> the behaviour in the <code>pom.xml</code>. There are other goals that let you deploy as an exploded archive <em>etc</em>.</li> <li>for <em>Ant</em>: something like this:</li> </ul></li> </ul> <pre> &lt;property name="manager.url" value="http://localhost:8080/manager"/&gt; &lt;property name="manager.username" value="manager"/&gt; &lt;property name="manager.password" value="foobar"/&gt; &lt;!-- Task definitions --&gt; &lt;taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"/&gt; &lt;taskdef name="list" classname="org.apache.catalina.ant.ListTask"/&gt; &lt;taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask"/&gt; &lt;taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"/&gt; &lt;!-- goals --&gt; &lt;target name="install" depends="compile" description="Install application to servlet container"&gt; &lt;deploy url="${manager.url}" username="${manager.username}" password="${manager.password}" path="${app.path}" localWar="file://${build.home}"/&gt; &lt;/target&gt; &lt;target name="list" description="List installed applications on servlet container"&gt; &lt;list url="${manager.url}" username="${manager.username}" password="${manager.password}"/&gt; &lt;/target&gt; &lt;target name="reload" depends="compile" description="Reload application on servlet container"&gt; &lt;reload url="${manager.url}" username="${manager.username}" password="${manager.password}" path="${app.path}"/&gt; &lt;/target&gt; &lt;target name="remove" description="Remove application on servlet container"&gt; &lt;undeploy url="${manager.url}" username="${manager.username}" password="${manager.password}" path="${app.path}"/&gt; &lt;/target&gt; </pre> <p>All of those will require you to have a Tomcat user configuration. It lives <code>$CATALINA_BASE/conf/tomcat-users.xml</code>, but since you know already how to use the web interface, I assume you know how to configure the users and passwords.</p>