Packaging up Tomcat - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T12:15:45Zhttp://stackoverflow.com/feeds/question/70724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70724/packaging-up-tomcat1Packaging up TomcatPhill Sacre2008-09-16T09:30:18Z2009-01-18T13:46:33Z
<p>Hi,</p>
<p>In my job we have to deploy an application on various environments. It's a standard WAR file which needs a bit of configuration, deployed on Tomcat 6.</p>
<p>Is there any way of creating a 'deployment package' with Tomcat so that you just extract it and it sets up Tomcat as well as your application? I'm not sure that creating a .zip file with the Tomcat folder would work! It certainly wouldn't install the service.</p>
<p>Suggestions welcome!</p>
<p>I should note that - at the moment - all apps are deployed on Windows servers.</p>
<p>Thanks,
Phill</p>
http://stackoverflow.com/questions/70724/packaging-up-tomcat/70931#709310Answer by Vilmantas Baranauskas for Packaging up TomcatVilmantas Baranauskas2008-09-16T10:11:30Z2008-09-16T10:11:30Z<p>One option would be to use embedded Winstone servlet container instead of Tomcat as described here:
<a href="http://winstone.sourceforge.net/#embedding" rel="nofollow">http://winstone.sourceforge.net/#embedding</a></p>
<p>Then you would have executable jar file running your application.</p>
http://stackoverflow.com/questions/70724/packaging-up-tomcat/71240#712401Answer by Noel Grandin for Packaging up TomcatNoel Grandin2008-09-16T11:04:47Z2008-09-16T11:04:47Z<p>You could probably modify the installer that Tomcat itself uses. </p>
<p>Simply zipping up the directory is a valid solution, but as you note, it will not install the service. </p>
<p>I would probably (a) zip up the directory (b) use one of the open-source service registry programs to install the server and maybe (c) uses NSIS to build an installer.</p>
<p>Depending on the installation environment, your installer may also need to ask the user for a server port, since your application may not be able to use the default HTTP port.</p>
http://stackoverflow.com/questions/70724/packaging-up-tomcat/72835#728351Answer by Kevin for Packaging up TomcatKevin2008-09-16T14:22:11Z2008-09-16T14:22:11Z<p>We use <a href="http://antinstaller.sourceforge.net/" rel="nofollow">Ant Installer</a> to deploy our application, app server and install it as a service. We embed <a href="http://wrapper.tanukisoftware.org/doc/english/integrate.html" rel="nofollow">Java Service Wrapper</a> in the installer to install the Windows service.</p>
http://stackoverflow.com/questions/70724/packaging-up-tomcat/72883#728830Answer by pjz for Packaging up Tomcatpjz2008-09-16T14:26:17Z2008-09-16T14:26:17Z<p>It's commercial, but <a href="http://www.ej-technologies.com/products/install4j/overview.html" rel="nofollow">install4j</a> will do this for you, including installing the service.</p>
http://stackoverflow.com/questions/70724/packaging-up-tomcat/455152#4551520Answer by Daniel Lopez for Packaging up TomcatDaniel Lopez2009-01-18T13:46:33Z2009-01-18T13:46:33Z<p>You could use <a href="http://bitrock.com" rel="nofollow">BitRock crossplatform installer</a>. You can take a look at <a href="http://bitnami.org" rel="nofollow">BitNami</a> for a number of Java applications like <a href="http://bitnami.org/stack/alfresco" rel="nofollow">Alfresco</a>, <a href="http://bitnami.org/stack/roller" rel="nofollow">JRoller</a>, and <a href="http://bitnami.org/stack/liferay" rel="nofollow">Liferay</a> that have been packaged using BitRock. The BitNami stacks are completely free, though Bitrock itself is a commercial tool (we have free licenses for open source projects)</p>