Capistrano is a developer tool for deploying web applications. It is typically installed on a workstation, and used to deploy code from your source code management (SCM) to one, or more servers.
52
votes
13answers
13k views
What is your preferred php deployment strategy?
I'm beginning a new project in PHP and I'd love to get some feedback from other developers on their preferred strategy for PHP deployment. I'd love to automate things a bit so that once changes are ...
35
votes
4answers
20k views
Gems and Ubuntu
I recently upgraded to Ubuntu 9.04 and I have issues using gems.
I have installed ruby, ruby gems and rails using apt-get
The rails command do work.
I have then installed capistrano and other gems ...
23
votes
1answer
3k views
Capistrano - clean up old releases
Usually when using capistrano, I will go and manually delete old releases from a deployed application. I understand that you can run 'cap deploy:cleanup' but that still leaves 5 releases. Is this it's ...
20
votes
7answers
9k views
How do I run a rake task from Capistrano?
I already have a deploy.rb that can deploy my app on my production server.
My app contains a custom rake task (a .rake file in the lib/tasks directory).
I'd like to create a cap task that will ...
19
votes
8answers
8k views
Deny access to .svn folders on Apache
We have a rails application in subversion that we deploy with Capistrano but have noticed that we can access the files in '/.svn', which presents a security concern.
I wanted to know what the best ...
16
votes
4answers
8k views
How to deploy resque workers in production?
The GitHub guys recently released their background processing app which uses Redis:
http://github.com/defunkt/resque
http://github.com/blog/542-introducing-resque
I have it working locally, but I'm ...
15
votes
4answers
2k views
Capistrano to deploy rails application - how to handle long migrations?
So I am using Capistrano to deploy a rails application to my production server (apache+passenger) and at the moment deployment usually goes along the lines:
$cap deploy
$cap deploy:migrations
It ...
13
votes
5answers
9k views
Rails 3 — Bundler/Capistrano Errors
I have a basic Rails 3 app working locally on my development box, but want to test out deploying early on to make sure everything works. I'm using Capistrano to deploy.
When I run cap deploy (after ...
13
votes
5answers
5k views
Starting delayed_job at startup
I'm using delayed_job with capistrano and would like a way to start delayed_job on startup of the web application using the 'script/delayed_job start'. This way capistrano can restart it on deploy. ...
12
votes
1answer
4k views
What exactly is a “role” in Capistrano?
What is the purpose and function of "roles" in a Capistrano recipe? When I look at sample recipes, I often see something like this:
role :app, 'somedomain.com'
role :web, 'somedomain.com'
role :db, ...
12
votes
7answers
2k views
Deploying a Git subdirectory in Capistrano
My master branch layout is like this:
/ <-- top level
/client <-desktop client source files
/server <- Rails app
What I'd like to do is only pull down the /server directory in my ...
11
votes
3answers
3k views
Working Capistrano recipe for uploading precompiled Rails 3.1 assets to Amazon S3
We have a Rails 3.1 app that allows users to upload photos to Amazon S3. Since we're using S3 in production I'd like to automatically (on cap deploy) also upload the precompiled assets (application.js ...
11
votes
2answers
1k views
Is there a Perl or Lua alternative to Capistrano?
For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect ...
10
votes
2answers
2k views
Hot deploy on Heroku with no downtime
A bad side of pushing to Heroku is that I must push the code (and the server restarts automatically) before running my db migrations.
This can obviously cause some 500 errors on users navigating the ...
10
votes
3answers
4k views
How do I configure capistrano to use my rvm version of Ruby
Does anybody know how I can tell capistrano to use my default rvm version of ruby for on the server I am pushing to. It insists on using the system version.
Is it even possible?
10
votes
2answers
4k views
Using capistrano to deploy from different git branches
I am using capistrano to deploy a RoR application. The codebase is in a git repository, and branching is widely used in development. Capistrano uses deploy.rb file for it's settings, one of them being ...
10
votes
4answers
965 views
“Warm Up Cache” on deployment
I am wondering if anyone has any plugins or capistrano recipes that will "pre-heat" the page cache for a rails app by building all of the page cached html at the time the deployment is made, or ...
9
votes
2answers
2k views
Deploying a Rails App to Multiple Servers using Capistrano - Best Practices
I have a rails application that I need to deploy to 3 servers - machine1.com, machine2.com and machine3.com. I want to be able to deploy it to all machines at once and each machine individually. Can ...
9
votes
4answers
5k views
Capistrano & Bash: ignore command exit status
I'm using Capistrano run a remote task. My task looks like this:
task :my_task do
run "my_command"
end
My problem is that if my_command has an exit status != 0, then Capistrano considers it ...
9
votes
4answers
5k views
How to deploy to a single specific server using Capistrano
I have a system in production that has several servers in serveral roles. I would like to test a new app server by deploying to that specific server, without having to redeploy to every server in ...
8
votes
4answers
3k views
How can you check to see if a file exists (on the remote server) in Capistrano?
Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your local file system, not the server you are deploying to.
I found one result that used ...
8
votes
2answers
3k views
Using Capistrano to deploy (a non-Rails site) via FTP?
How would I go about this?
I have a mostly static site, which is being hosted on a cheap web-host, which only allows FTP access to the hosting. The site is tracked in git. I am using OS X.
I would ...
8
votes
5answers
3k views
7
votes
2answers
8k views
Rails 3, capistrano tutorial to deploy to server using GIT
I have a server on a VPS, that has my GIT repository also.
I want a step by step tutorial on how to deploy using Capistrano for a rails 3 application.
thanks in advance!
7
votes
3answers
2k views
Capistrano asks for password when deploying, despite SSH keys
My ssh keys are definitely set up correctly, as I'm never prompted for the password when using ssh. But capistrano still asks for a password when deploying with cap deploy. It doesn't ask for the ...
7
votes
2answers
6k views
Capistrano + Git : repository local to production server
I am trying to do 'deploy:cold' for my app. The git repo is local to
my deployment server (i.e. I only have one server for everything and I
don't host my code on github).
Here is the transcript ...
7
votes
6answers
3k views
Reading the first line of a file in Ruby
I want to read only the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?
(Specifically: I want to read the git commit UUID out of the ...
7
votes
2answers
4k views
db:schema:load vs db:migrate with capistrano
I have a rails app that I'm moving to another server and I figure I should use db:schema:load to create the mysql database because it's recommended. My problem is that I'm using capistrano to deploy ...
7
votes
1answer
7k views
How do you roll back to the previously deployed version with capistrano?
I tried using "cap rollback" but I get the following error:
$ cap rollback
the task `rollback' does not exist
Is there some additional setup that I need to do to get rollbacks to work?
7
votes
3answers
4k views
Capistrano is hanging when prompting for SUDO password to an Ubuntu box
I have a capistrano deployment recipe I've been using for some time to deploy my web app and then restart apache/nginx using the sudo command. Recently cap deploy is hanging when I try to execute ...
7
votes
5answers
3k views
What's the best way to deploy a JRuby on Rails application to Tomcat?
I'm looking at ways to deploy a Ruby on Rails app (running on JRuby) to a Tomcat instance for testing.
The tomcat instance is running on a Solaris server that I can SSH to. I've looked at using ...
7
votes
3answers
933 views
How to do a rolling restart of a cluster of mongrels
Anybody know a nice way to restart a mongrel cluster via capistrano in a "rolling" style, eg, one mongrel at a time. Would be great to have a bit of wait time in there as well for each, to let the ...
6
votes
1answer
953 views
Bundler + RVM + Passenger + Capistrano deployment & missing gems
I got the server with the configuration above.
This is the important part of my deploy.rb recipe:
$:.unshift(File.expand_path('./lib', ENV['rvm_path']))
require 'rvm/capistrano'
require ...
6
votes
1answer
260 views
Invoke delayed_job capistrano tasks only on specific servers
I have a dedicated server for delayed_job tasks. I want to start, stop, and restart delayed_job workers on only this server. I am using the capistrano recipes provided by delayed_job.
When I only had ...
6
votes
2answers
4k views
Using Capistrano to deploy a Rails application to multiple web servers
I'm currently setting up a new production environment for a Rails application which includes multiple, load-balanced application servers (currently only two, but this will increase over time).
I'd ...
6
votes
2answers
914 views
Starting background tasks with Capistrano
For my RubyOnRails-App I have to start a background job at the end of Capistrano deployment. For this, I tried the following in deploy.rb:
run "nohup #{current_path}/script/runner -e production ...
6
votes
1answer
969 views
How do I target a specific commit SHA with capistrano deploy
I am wondering how I can target a specific commit SHA in Git for deployment, using Capistrano? It should be something like
cap deploy --version=<sha targeted>
Can't seem to find the answer to ...
6
votes
2answers
2k views
Creating a Capistrano task that performs different tasks based on role
I'm looking for a way to call a single Capistrano task to perform different things to different roles. Is Capistrano able to do this, or do I have write a specific task for each role?
6
votes
2answers
3k views
Rails: Unable to access log file
I get the following error when restarting my rails app. I've had this problem before, on another server with another app, but can't remember what the problem was, or how I solved it.
Rails Error: ...
6
votes
4answers
4k views
Capistrano for Java?
I'm a big fan of Capistrano but I need to develop an automated deployment script for a Java-only shop. I've looked at Ant and Maven and they don't seem to be well geared towards remote administration ...
5
votes
1answer
203 views
Capistrano: Can I set an environment variable for the whole cap session?
I've got a staging server with both standard Ruby and Ruby Enterprise installed. As standard Ruby refuses to install a critical gem, I need to set $PATH so that ruby/gem/rake/etc. always refer to the ...
5
votes
1answer
361 views
mod_xsendfile with symbolic links
I'm running into an issue using xsendfile with my Rails 3 app.
I'm using capistrano to manage deployments and in each release, there is a symbolic link to the shared/assets dir (e.g. ...
5
votes
1answer
531 views
Deploying Ruby on rails on Deamhost fails
I'm trying to deploy a simple Ruby on Rails app to dreamhost but I'm getting an error related to the bundle command. Here is the error:
servers: ["bullseye.dreamhost.com"]
...
5
votes
4answers
643 views
Is there a way to use capistrano (or similar) to remotely interact with rails console
I'm loving how capistrano has simplified my deployment workflow, but often times a pushed change will run into issues that I need to log into the server to troubleshoot via the console.
Is there a ...
5
votes
2answers
452 views
How do I invoke one Capistrano task from another?
How do I invoke one Capistrano task from another?
For example:
task :foo do
# stuff
end
task :bar do
# INVOKE :foo
end
5
votes
2answers
903 views
Hosting rails on ec2
I want to deploy a rails onto amazon ec2. I've had a look at poolparty and ec2onrails but neither seem to be maintained anymore.
What are people using to do this? Is it all homebrewed puppet and ...
5
votes
1answer
920 views
Capistrano and deployment of a website from Github
So, I had what I thought was a fairly simple Capistrano use case: I want to deploy a PHP site from Github. But I'm running into a lot of problems. When I run cap deploy, Capistrano is able to clone ...
5
votes
2answers
1k views
How is Capistrano related to Rake?
I'm starting to read up on Capistrano after using Rake tasks to deploy apps for a long time. It's really striking how similar it is to Rake. A lot of parallel commands (like cap -T) and a lot of ...
5
votes
5answers
2k views
Capistrano not restarting Mongrel clusters properly
I have a cluster of three mongrels running under nginx, and I deploy the app using Capistrano 2.4.3. When I "cap deploy" when there is a running system, the behavior is:
The app is deployed. The ...
4
votes
3answers
188 views
Capifony (Symfony2 flavored Capistrano) fails warming the cache
Yesterday I made my 40th or 50th deployment of a Symfony2 system on a server. Everything fine so far. Today I get a nasty error. This is what happens:
* executing `symfony:cache:warmup'
* executing ...