我尝试使用Capistrano 3来部署Rails 4应用程序。
#config valid only for Capistrano 3.1
lock '3.1.0'
set :application, 'testapp'
set :scm, :git
set :repo_url, 'git@bitbucket.org:sergiotapia/testapp.git'
set :user, "deploy" # The user on the VPS server.
set :password, "hunter2$$"
set :use_sudo, false
set :deploy_to, "/home/deploy/www/testapp"
set :deploy_via, :remote_cache
set :pty, true
set :format, :pretty
set :keep_releases, 1
set :rails_env, "production"
set :migrate_target, :latest
namespace :deploy do
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
# Your restart mechanism here, for example:
# execute :touch, release_path.join('tmp/restart.txt')
execute :touch, release_path.join('tmp/restart.txt')
system "curl --silent #{fetch(:ping_url)}"
end
end
after :publishing, :restart
after :restart, :clear_cache do
on roles(:web), in: :groups, limit: 3, wait: 10 do
# Here we can do anything such as:
# within release_path do
# execute :rake, 'cache:clear'
# end
end
end
end
运行cap production deploy
时,我收到以下消息:
DEBUG [322bb1fd] Enter passphrase for key '/home/deploy/.ssh/id_rsa':
当我输入终端时,我可以看到这些字符,通常你只是在键入密码时看到空格,对吗?
DEBUG [484154d4] Enter passphrase for key '/home/deploy/.ssh/id_rsa':
qwef
ewf
qw
ef
qwef
wqe
f
qwef
wqe
f
^Ccap aborted!
Interrupt:
我输入密码然后按回车键,它就会停留在那里而没有任何新的发展。我必须按Ctrl + C才能真正离开终端。
我可以在deploy.rb文件中设置 SSH密码吗?
答案 0 :(得分:4)
我遇到了同样的问题。
我所做的是改变我的配置。为了避免capistrano要求密码,你必须设置`
set :pty, false
然后,您必须在用于触发终端的任何计算机上生成部署密钥(如果您使用bitbucket,可以在https://confluence.atlassian.com/display/BITBUCKET/Set+up+SSH+for+Git找到一个非常好的指南)并运行cap production deploy
< / p>
默认情况下,capistrano会将 forward_agent 设置为 true ,它将使用计算机中生成的密钥在远程代码仓库中进行身份验证。
答案 1 :(得分:0)
我要做的是通过
删除密码短语第1步:$ {ssh-keygen -p
第2步:$ ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]
参考:
How do I remove the passphrase for the SSH key without having to create a new key?