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.

learn more… | top users | synonyms

0
votes
2answers
24 views

ROR - rake assets:precompile fails with 'CoffeeScript is not defined'

Hi I'm new to Rails and I've just recently setup a production environment on Ubuntu 12.04 with RVM. If it matters, I've installed ruby in multi-user mode (rvm lives in /usr/local/rvm/bin/rvm). I am ...
1
vote
0answers
13 views

Capistrano Rubber Phusion Passenger Enterprise Config

I am having a little trouble editing the Capistrano Rubber recipes to include the Phusion Passenger Enterprise edition instead of the open-source module. The problem starts with the fact that the ...
0
votes
1answer
16 views

No such file or directory during cap deploy:update

I noticed in the output from cap deploy:update, that it is triggering "deploy:assets:precompile" as an after callback for deploy:update_code: triggering after callbacks for `deploy:update_code' * ...
0
votes
2answers
25 views

Rails app on Linode - Where are my seeds (seeds.rb)

So I've got my rails app on a linode box using capistrano and rvm in the app, with nginx, postgres, and Ubuntu 13.04 on the server. My app is the one from the teamtreehouse tutorial. See it on heroku ...
0
votes
0answers
7 views

Capistrano find replace in entire database

I am using capistrano to deploy my website. In my database there are alot of variables in different tables (which I do not know in advance which) that depend on the environment. How can I, using ...
0
votes
0answers
6 views

Calling capistrano task from different stage

Is it possible to call capistrano task from task with the different stage using capistrano-ext gem? Thanks for help.
0
votes
0answers
17 views

Capistrano, change host in task

I have the following problem: I need to write capistrano task that will execute some commands on test_server_1 and then switch to test_server_2 for another set of commands. I found out, I can do ...
1
vote
0answers
14 views

How do I configure monit to allow the change in pid?

I am deploying a rails app with sidekiq. On each deploy Capistrano stops a previous running version of sidekiq (a ruby process) and then starts a new one. I am monitoring the sidekiq pid file with ...
1
vote
0answers
53 views

Unicorn method missing generated_attribute_methods

I have a application that uses rails + unicorn + nginx and capistrano for deployment. It was all working fine, until yesterday when i ran a bundle update. suddenly the unicorn server cant start ...
0
votes
0answers
9 views

Setting up Capistrano to deploy to Azure Ubuntu VM

I am following this guide, and I am at the step where I attempt to do cap deploy:cold. I get the following error: ** [out :: vm.cloudapp.net] env: /etc/init.d/unicorn_app ** [out :: ...
0
votes
0answers
36 views

undefined method `[]' for nil:NilClass during assets:precompile rake while deploying with capistrano

I've got capistrano configured so that assets are compiled on production when i run deploy via capistrano. Im using Ruby 1.9.3, Rails 3.2.13 with MongoDb database. Problem exists only during ...
0
votes
0answers
26 views

After successful deployment App not running (RoR/Capistrano/Github)

In between i found another working solution to solve the issue using Windows for development and Linux for production. Solution After using the recommendations i have another issue. CAP DEPLOY works ...
1
vote
0answers
38 views

Locked delayed_job row lingers in the database after capistrano deploy

Whenever I deploy with capistrano or run cap production delayed_job:restart, I end up with the currently-running delayed_job row remaining locked. The delayed_job process is successfully stopped, a ...
0
votes
1answer
25 views

Deploying rails app on separate app server and database server (both Linode)

I'm having trouble deploying a basic rails app (which works on local machine, which works on heroku) to a distributed architecture (web server on one box, database server on another). Here is my ...
-1
votes
0answers
19 views

Capistrano is throwing a NoMethodError

I've been using Ruby's Capistrano deployment tool for a few years and never had much problems with it at all. Now, after upgrading Ruby to 2.0, I started getting all kinds of errors making it ...
0
votes
1answer
33 views

Capistrano rollback - what happens to GIT?

I have a Rails app that is using GIT, Github, and Capistrano. I have GIT repositories on my local iMac, Github and the production server. My normal process is: I run (1) $ git push (to push the ...
0
votes
1answer
28 views

Capistrano: how to run a command-line rake task and rescue only for specific errors?

In our Capistrano deploy, we have a task to make sure our Solr (via Sunspot gem) is running: run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec rake sunspot:solr:start" However, ...
0
votes
1answer
32 views

How do you set pool size in production using rails and rubber gem?

I am using rails 3.2 and postgres 9.1. I'm hosting on Amazon EC2 instance, and using capistrano and rubber to deploy. So my question is, since I don't set database options in database.yml for ...
0
votes
0answers
16 views

Can you use capistrano if you need to sudo su into another user?

I'm trying to get capistrano working on my groups project. Due to department restrictions, we have to log in as ourselves, then sudo su into a shared project user. That project user that we sudo su - ...
0
votes
2answers
32 views

Capistrano - deployment with git shared repository

I'm trying to setup Capistrano to deploy my project with multiples git users. Where I work for, doesn't have (and doesn't wanna have) a generic git user, like 'git'. So the deploy config is related to ...
0
votes
1answer
33 views

Bundler on production server can't find any gems

I am using passenger + nginx to deploy a rails app. The problem I am having is that bundler is not finding any gems when it tries to install them. For instance, I am getting this error: Could not ...
0
votes
0answers
6 views

.htaccess file for pointing to current directory (using capistrano for deploy)

I'm using Capistrano for deploying my website to the server. It is currently set to deploy to: set :deploy_to, "/path/to/my/directory". It works fine, and when it is deployed, the current folder is ...
1
vote
0answers
20 views

SOLR unknown field type, Rails / Capistrano

Am trying to deploy solr based search using capistrano, am receiving errors while reindexing, RSolr::Error::Http (RSolr::Error::Http - 400 Bad Request Error: ...
0
votes
1answer
11 views

Capistrano deploy to www folder

I have a webserver from an external host. The website is run from the /www folder. I configured and did a capistrano deploy to /www on the remote server. After playing with the settings, the ...
0
votes
1answer
48 views

Capifony: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '('

I am trying to get Capifony working in my Symfony2 application and for the life of me I can't get it working as I don't really know how to debug ruby. Here is what I am doing: $ lsb_release -a No LSB ...
1
vote
0answers
15 views

Trouble deploying rails app with capistrano, Gem::RemoteFetcher::FetchError: too many connection resets

I'm using Rails 3.2.8 and deploying to a remote server using rvm-capistrano. I'm encountering an error with the axlsx gem. From the command line, doing a 'rvmsudo gem install axlsx' works. But using ...
0
votes
2answers
28 views

Upload images from rails to linode

So I want to upload images from my running rails 3 app wich is hosted on linode, the file upload works locally, but when i try to do it remotely it fails. I've read some options, but almost all of ...
1
vote
0answers
36 views

How to deploy multiple app servers from different branches

I have a RoR app running on 2 app/web servers using nginx/unicorn. The site is deployed using Rubber from the "master" branch of our repo. Life is good! Some of the new customers we are working with ...
3
votes
0answers
34 views

Capifony deploy to server X, clear APC cache on server X and Y

I have a webserver cluster with two nodes. They use the same file server to host files from. Since the files are shared, I only need to get to one of the servers to do my deploy, but I would like to ...
1
vote
2answers
89 views

Precompiling Assets Failure During Deployment

I am using Capistrano to precompile my assets during deployment, and I am getting an error that isn't very useful to me. * executing "cd -- path/to/releases/20130507161214 && bundle exec rake ...
0
votes
0answers
33 views

No such file or directory when upload image Sidekiq + carrierwave + carrierwave_backgrounder to S3

I am using Sidekiq, and Capistrano for deploy. I config the cache_dir to store image in the shared directory: shared/uploads/tmp/20130507-1115-14785-4884/pic.jpg and carrierwave_backgrounder try to ...
0
votes
0answers
32 views

Capistrano fails when trying to deploy Rails asset manifest

I'm trying to deploy a Rails app that has worked successfully before, but Capistrano is barfing during deployment. I don't believe I've changed anything other than changing the Rails app code itself ...
2
votes
1answer
26 views

Argument error while deploying rails app via capistrano to bluehost

I have build a sample app using rails and trying to deploy it using capistrano to bluehost. But I am failing to do so. I followed the instructions mentioned in this ...
1
vote
2answers
51 views

Rails Error: Unable to access log file And ActionView::Template::Error Permission denied

I'm deploy my app with capistrano on centos (apache + passenger), when access my web I got `HTTP 500 (Internal Server Error)' and check error_log file , here's error look likes : DAV/2 ...
0
votes
2answers
40 views

How do I successfully notify Airbrake of a deployment when using capistrano to deploy a Node.js project?

This is a bit of an oddball question. Capistrano 2.14.2 I'm using capistrano to deploy a couple of Node.js projects, and this works fine (from within the same rvm and gemset Ruby installation). ...
1
vote
1answer
33 views

Capistrano passing -b flag to git-clone causes error

I recently upgraded Capistrano to 2.15.4. cap deploy tried to run this command on the server: git clone -q -b master <URL of my repo> Which resulted in this error message from Git: error: ...
0
votes
1answer
51 views

Rails app deployment with capistrano Killing assets precompile

on cap deploy:cold ro cap deploy, is triggered an error [out :: xxx.xxx.xxx.xxx] Killed command finished in 9020ms *** [deploy:update_code] rolling back * executing ...
0
votes
1answer
48 views

Deploy error using capistrano failed: "sh -c 'cat /home…current/REVISION

I get an error while deploying app to VPS by capistrano. cap deploy:setup, and cap deploy:check executes without error! when I try to cap deploy:cold or simply cap deploy, I get this ...
0
votes
0answers
77 views

Deployment of Puma with Nginx and Capistrano

I am running into some issues when I'm trying to deploy my Rails app with Puma and Nginx. I have a regular Capistrano setup, that has the puma/capistrano included. When running cap deploy:cold it ...
0
votes
2answers
60 views

Can't Deploy App Using RVM Capistrano

First, I have development app rails on ubuntu using rvm 1.15.8 (stable) by wayne, and I will deploy to my vps. Here's history of build rails app on my vps : Install rvm using user "user" on my vps, ...
0
votes
1answer
36 views

RoR Deployment - Development Windows/Productiv Linux possible?

i am just started learning RoR following a book/tutorial (http://ruby-auf-schienen.de/3.2/webserver_mit_capistrano.html). I reached a chapter about setting up Capistrano Deployment. nginx with unicorn ...
1
vote
0answers
83 views

git checkout throws fatal reference is not a tree

I deployed code using capistrano into a remote machine, but I get the following error. How do i get rid of this issue. executing locally: "git ls-remote git@github.com:mycompany/foo.git staging" ...
1
vote
2answers
75 views

Amazon EC2 + Capistrano + Git: Permission denied (publickey)

When I deploy a Rails app to Amazon EC2 server with using Capistrano, I get ** [IP.compute-1.amazonaws.com :: out] Permission denied (publickey). ** [IP.compute-1.amazonaws.com :: out] fatal: The ...
0
votes
0answers
37 views

Capistrano and EC2: Don't know how to build task 'db:migrate'

When I run the command cap deploy:cold then in the deployment process I get these errors: *** [err :: myapp.com] rake aborted! *** [err :: myapp.com] *** [err :: myapp.com] Don't know how to build ...
1
vote
3answers
47 views

Why do I need to precompile Rails assets on app servers and not web servers only?

I'm deploying a simple Rails app to this small ubuntu precise64 server setup : * 1 web server running nginx * 2 app servers running unicorn * 1 db server running postgresql My servers are ...
0
votes
3answers
63 views

EC2 - cannot deploy as “bitnami” user

I am using Capistrano for deploying a Rails app to Amazon EC2. In the deploy files, I have following credentials for connecting to Amazon EC2: set :user, "bitnami" #set :user, "root" server ...
0
votes
1answer
40 views

Rails 3.2 Deploy to Subdirectory Kind of Working

I am trying to deploy my Rails 3.2 app to a subdirectory, /support, on an Apache server. Consulting the various posts, the only solutions that seem to have helped involve setting up a symbolic link on ...
0
votes
0answers
20 views

I can't set Capistrano default_environment

Deployment configuration In config/deploy/facebook.rb which I am including correctly: # To set this variable when deploying: cap -S fb_test=true deploy # will deploy with FB test application ...
0
votes
1answer
48 views

Chef running git clone results in host key verification error

I am using Chef, invoked by Capistrano. There is a directive to clone a repository using git. git node['rails']['rails_root'] do repository "git@myrepo.com:/myproj.git" reference "master" ...
0
votes
1answer
28 views

Capistrano deploy fails due to missing manifest file

I've just set up a Capistrano deploy for our application and I keep running into this error: * executing ["ls /path/to/app/shared/assets/manifest*"] servers: ["web03"] [web03] executing ...

1 2 3 4 5 33