What's the best way to deploy a JRuby on Rails application to Tomcat? - Stack Overflow most recent 30 from stackoverflow.com2010-03-16T13:53:57Zhttp://stackoverflow.com/feeds/question/147671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat6What's the best way to deploy a JRuby on Rails application to Tomcat?madlephttp://stackoverflow.com/users/141602008-09-29T05:58:39Z2008-10-26T21:29:29Z
<p>I'm looking at ways to deploy a Ruby on Rails app (running on JRuby) to a Tomcat instance for testing.</p>
<p>The tomcat instance is running on a Solaris server that I can SSH to. I've looked at using Capistrano, but there doesn't seem to be a lot out there about using it to deploy to Tomcat, or even about running it under JRuby, and I keep hitting bugs in Capistrano due to the Windows/JRuby environment my PC is running (yeah, it's corporate - not my choice, but I've got to live with it).</p>
<p>I'm using warble to build the .war file, and the app deploys and runs fine once I manually copy it up and deploy it. I'm wanting something easier and more automated to actually get it there.</p>
<p>Anyone done this before? Documentation on the web seems pretty thin.</p>
http://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat/147712#1477123Answer by Lars Westergren for What's the best way to deploy a JRuby on Rails application to Tomcat?Lars Westergrenhttp://stackoverflow.com/users/156272008-09-29T06:31:13Z2008-09-29T06:31:13Z<p>I don't have much experience on this, so I don't know if I can give you the BEST way, but if Capistrano doesn't work, and you can't have a separate MRI install just to run it, you have just a few alternatives left:</p>
<p>Try running plain Rake and write your own deployment target:
<a href="http://www.gra2.com/article.php/deploy-ruby-on-rails-applications-rake" rel="nofollow">http://www.gra2.com/article.php/deploy-ruby-on-rails-applications-rake</a></p>
<p>Or use Ant or Maven.</p>
<p>Or if it just ONE server you have to deploy to, you could just hack together two Ruby scripts - one that listens on the server for shutdown/startup requests, and one local that you run to: Send shutdown, scp over the file, send startup.</p>
<p>By the way, have you submitted any integration bugs you find with Capistrano to the JRuby team? I'm sure they'd be happy to have any contribution.
:)</p>
http://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat/147807#1478072Answer by Kris for What's the best way to deploy a JRuby on Rails application to Tomcat?Krishttp://stackoverflow.com/users/222372008-09-29T07:28:39Z2008-09-29T07:28:39Z<p>Might be worth looking at 'Vlad the deployer' it adds remote_task to Rake allowing you to run tasks on a remote server. Personally however I prefer to have a standard Rake task on the server, ssh in and run that task - which would then do an svn checkout, make the WAR file, whatever...</p>
http://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat/148168#1481682Answer by John Topley for What's the best way to deploy a JRuby on Rails application to Tomcat?John Topleyhttp://stackoverflow.com/users/14502008-09-29T10:11:30Z2008-09-29T10:11:30Z<p>I would probably use Ant for this. After all, it's just another WAR file, right? I don't know which version of Tomcat you're using but version 4.1x <a href="http://raibledesigns.com/rd/entry/deploying_to_tomcat_using_ant" rel="nofollow">comes with an Ant task for deploying to Tomcat</a>.</p>
http://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat/238652#2386522Answer by Caleb Powell for What's the best way to deploy a JRuby on Rails application to Tomcat?Caleb Powellhttp://stackoverflow.com/users/316432008-10-26T21:23:33Z2008-10-26T21:29:29Z<p>I am running a Rails project using JRuby and deploying to a Tomcat server. I have chosen to deploy with Capistrano because it automates just about everything. I had to make a few minor modifications to Capistrano's deployment lifecycle in order to get it to run on Tomcat:</p>
<ol>
<li><p>I created a warble task to be run on the server after Capistrano updates the code:</p>
<p>desc "Run the warble command to deploy the site"
namespace(:deploy) do
task :warble do
run ". ~/.profile;cd #{release_path};warble"
end
end</p></li>
</ol>
<p>And hooked it into Capistrano lifecycle using:</p>
<pre><code>after 'deploy:update_code', 'deploy:warble'
</code></pre>
<p>My Tomcat server has a symlink pointing to the '#{release_path}/tmp/war' directory created by warble. If you don't like this, you can easily modify the warble task to move the war file into the Tomcat directory instead.</p>
<ol>
<li><p>I overrode the deploy:start and deploy:stop tasks so that they kick off the Tomcat server instead of a Mongrel server:</p>
<p>desc "Starts the Tomcat Server"
namespace(:deploy) do
task :start do
sudo "#{tomcat_home}/bin/startup.sh"
end
end</p>
<p>desc "Shutdown the Tomcat Server"
namespace(:deploy) do
task :stop do
sudo "#{tomcat_home}/bin/shutdown.sh"
end
end</p></li>
</ol>
<p>I run Capistrano tasks using MRI rather than the JRuby interpreter.</p>