Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9181261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:14:46+00:00 2026-06-17T18:14:46+00:00

I am trying to run cap depoly and i get the following error that

  • 0

I am trying to run cap depoly and i get the following error that says

  command finished in 881ms
  * 2013-01-24 12:50:53 executing `whenever:update_crontab'
  * executing "cd /home/deployer/apps/cf/releases/20130124115051 && bundle exec whenever --update-crontab cf --set environment=production --roles db"
    servers: ["208.68.37.172"]
    [208.68.37.172] executing command
 ** [out :: 208.68.37.172] Could not find acts-as-taggable-on-2.3.3 in any of the sources
 ** [out :: 208.68.37.172] 
 ** [out :: 208.68.37.172] Run `bundle install` to install missing gems.
 ** [out :: 208.68.37.172] 
    command finished in 1957ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /home/deployer/apps/cf/releases/20130124115051; true"
    servers: ["208.68.37.172"]
    [208.68.37.172] executing command
    command finished in 935ms
failed: "sh -c 'cd /home/deployer/apps/cf/releases/20130124115051 && bundle exec whenever --update-crontab cf --set environment=production --roles db'" on 208.68.37.172

I later realized that bundler is not running before whenever command and this happened after upgrading my rails app to the latest version of rails. 3.2.11. any help thanks.

set :whenever_command, "bundle exec whenever"
require "bundler/capistrano"
require "whenever/capistrano"

server "208.68.37.172", :web, :app, :db, primary: true

set :application, "xx"
set :user, "deployer"
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false

set :scm, "git"
set :repository, "git@github.com:ramza1/#{application}.git"
set :branch, "master"

default_run_options[:pty] = true
ssh_options[:forward_agent] = true

after "deploy", "deploy:cleanup" # keep only the last 5 releases

namespace :deploy do
  %w[start stop restart].each do |command|
    desc "#{command} unicorn server"
    task command, roles: :app, except: {no_release: true} do
      run "/etc/init.d/unicorn_#{application} #{command}"
    end
  end

  task :setup_config, roles: :app do
    sudo "ln -nfs #{current_path}/config/nginx.conf /etc/nginx/sites-enabled/#{application}"
    sudo "ln -nfs #{current_path}/config/unicorn_init.sh /etc/init.d/unicorn_#{application}"
    run "mkdir -p #{shared_path}/config"
    put File.read("config/database.example.yml"), "#{shared_path}/config/database.yml"
    puts "Now edit the config files in #{shared_path}."
  end
  after "deploy:setup", "deploy:setup_config"

  task :symlink_config, roles: :app do
    run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
  end
  after "deploy:finalize_update", "deploy:symlink_config"


  after "deploy:update_code" do
    run "mkdir -p #{release_path}/ckeditor_assets"
    run "ln -nfs #{shared_path}/ckeditor_assets #{release_path}/public/ckeditor_assets"
  end

  desc "Make sure local git is in sync with remote."
  task :check_revision, roles: :web do
    unless `git rev-parse HEAD` == `git rev-parse origin/master`
      puts "WARNING: HEAD is not the same as origin/master"
      puts "Run `git push` to sync changes."
      exit
    end
  end
  before "deploy", "deploy:check_revision"
end 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T18:14:47+00:00Added an answer on June 17, 2026 at 6:14 pm

    I think that your problems are both:

    The first, On your deploy.rb recipe add on the top of this file the next:

    require "bundler/capistrano"
    require "whenever/capistrano"
    

    The second I think that you must install from your gem file:

    gem 'acts-as-taggable-on'
    

    The third problem is whenever version, on version whenever 0.8.2 fail with deploy. Uninstall version 0.8.2 and install for example whenever (0.7.3)

    Uninstall acts-as-taggable-on-2.3.3 and check if without that gem the deploy is working.

    Also I use rbenv and I have this in my bash_profile before any other $PATH declarations to make sure it grabs those executables first:

    export PATH="$HOME/.rbenv/bin:$PATH"
    

    Remove from the top the set :whenever_command, "bundle exec whenever" and add this code after set :branch, "master"

    Try these steps to see if it works

    Regards!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When trying to run a junit test I get the following error - java.lang.ClassCastException:
Trying to run the following command in php to run powershell command... the following
Trying to run FireFox through apache (php script) I recieve the following error No
Trying to run my program through java web start. I get the following exception
While trying run bundle for a new project, I'm encountering the following error: Installing
I am trying run a small PHP script. I get an error when I
Trying to run my program in FreeBSD OS, I have the following results: $
Trying to run Jison unit tests, but the command fails. How do I fix
When I trying run Android Emulation, i Have error message: $ tools/emulator -avd Default
Trying to run the following code in Qt Creator on Win7 64bit. #include <boost/date_time/posix_time/posix_time.hpp>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.