-
-
Save toobulkeh/8214198 to your computer and use it in GitHub Desktop.
Updated for Capistrano 3.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
# Place in config/deploy.rb | |
namespace :rails do | |
desc "Open the rails console on each of the remote servers" | |
task :console do | |
on roles(:app) do |host| #does it for each host, bad. | |
rails_env = fetch(:stage) | |
execute_interactively "ruby #{current_path}/script/rails console #{rails_env}" | |
end | |
end | |
desc "Open the rails dbconsole on each of the remote servers" | |
task :dbconsole do | |
on roles(:db) do |host| #does it for each host, bad. | |
rails_env = fetch(:stage) | |
execute_interactively "ruby #{current_path}/script/rails dbconsole #{rails_env}" | |
end | |
end | |
def execute_interactively(command) | |
user = fetch(:user) | |
port = fetch(:port) || 22 | |
exec "ssh -l #{user} #{host} -p #{port} -t 'cd #{deploy_to}/current && #{command}'" | |
end | |
end |
What about running it just on the first available host.
namespace :rails do
desc "Open the rails console on each of the remote servers"
task :console do
on roles(:app).first do |host| #does it for the first host.
rails_env = fetch(:stage)
execute_interactively "ruby #{current_path}/script/rails console #{rails_env}"
end
end
desc "Open the rails dbconsole on each of the remote servers"
task :dbconsole do
on roles(:db).first do |host| #does it for the first host.
rails_env = fetch(:stage)
execute_interactively "ruby #{current_path}/script/rails dbconsole #{rails_env}"
end
end
def execute_interactively(command)
user = fetch(:user)
port = fetch(:port) || 22
exec "ssh -l #{user} #{host} -p #{port} -t 'cd #{deploy_to}/current && #{command}'"
end
end
For rbenv:
namespace :rails do
desc "Open the rails console"
task :console do
on roles(:app) do
rails_env = fetch(:rails_env, 'production')
execute_interactively "$HOME/.rbenv/bin/rbenv exec bundle exec rails console #{rails_env}"
end
end
desc "Open the rails dbconsole"
task :dbconsole do
on roles(:app) do
rails_env = fetch(:rails_env, 'production')
execute_interactively "$HOME/.rbenv/bin/rbenv exec bundle exec rails dbconsole #{rails_env}"
end
end
def execute_interactively(command)
user = fetch(:user)
port = fetch(:port) || 22
exec "ssh -l #{user} #{host} -p #{port} -t 'cd #{deploy_to}/current && #{command}'"
end
end
In case anyone still have issues with rbenv and @DmytroLukianov solution, I tuned it a bit and it worked for me:
namespace :rails do
desc 'Start a rails console'
# Usage: cap production rails:console
task :console do
on roles(:app) do
exec "ssh #{host.user}@#{host.hostname} -p #{host.port || 22} -t 'cd #{current_path} && $HOME/.rbenv/bin/rbenv exec bundle exec rails console'"
end
end
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's what I found worked with Rails
4.1
, Ruby2.1
, and RVM with thecapistrano-rvm
extensionGist: https://gist.github.com/chrisbloom7/5de890debc104390d6d4