我正在尝试使用Capistrano打开rails控制台,但它关闭了连接 我正在使用以下脚本并打开rails console
代码
namespace :rails do
desc "Start a rails console, for now just with the primary server"
task :c do
on roles(:app), primary: true do |role|
rails_env = fetch(:rails_env)
execute_remote_command_with_input "#{bundle_cmd_with_rbenv} rails console #{rails_env}"
end
end
def execute_remote_command_with_input(command)
port = fetch(:port) || 22
puts "opening a console on: #{host}...."
cmd = "ssh -l #{fetch(:deploy_user)} #{host} -p #{port} -t 'cd #{deploy_to}/current && #{command}'"
exec cmd
end
def bundle_cmd_with_rbenv
puts "RBENV_VERSION=#{fetch(:rbenv_ruby)} RBENV_ROOT=#{fetch(:rbenv_path)} #{File.join(fetch(:rbenv_path), '/bin/rbenv')} exec bundle exec"
if fetch(:rbenv_ruby)
"RBENV_VERSION=#{fetch(:rbenv_ruby)} RBENV_ROOT=#{fetch(:rbenv_path)} #{File.join(fetch(:rbenv_path), '/bin/rbenv')} exec bundle exec"
else
"ruby "
end
end
end
详情
我正在使用这个脚本打开rails控制台这么多时间,但是对于几个月的rails控制台打开脚本失败了,不知道该怎么做。
输出
RBENV_VERSION=2.1.2 RBENV_ROOT=/home/deployer/.rbenv /home/deployer/.rbenv/bin/rbenv exec bundle exec
opening a console on:
Usage:
rails new APP_PATH [options]
Connection to 45.55.142.39 closed.
任何建议热点它将起作用
答案 0 :(得分:1)
你的binstubs有问题。 你有两件事要做。
1)在您的deploy.rb
中:linked_dirs
不应包含bin
目录
2)这应该在你的deploy.rb
:
set :bundle_binstubs, nil
之后,您可以在本地计算机上运行:
rake rails:update:bin
这将包括您的仓库中的binstub。
让我知道它是怎么回事。