几周以来,我一直在使用 github 和 capistrano 将我的 Rails 4 应用程序部署到 Rackspace。一切都很好,直到我最终将我的存储库设为私有。现在,我在运行“cap deploy”后收到以下错误:
“致命:无法读取‘ https://username@github.com ’的密码:没有这样的设备或地址”
下面是我的 deploy.rb 文件中的代码
set :application, "appname"
set :repository, "https://git_username@github.com/git_username/appname.git"
set :scm, :git
set :scm_username, "git_username"
set :scm_passphrase, "git_password"
set :scm_command, "git"
set :keep_releases, 5
set :branch, "master"
set :rails_env, "production"
set :deploy_to, "/var/www/doLocal"
set :user, "deployer"
set :password, "deployer_password"
set :use_sudo, false
ssh_options[:forward_agent] = true
server "/path/to/server", :app, :web, :db, :primary => true
after "deploy:restart", "deploy:cleanup"
namespace :deploy do
task :start do ; end
task :stop do ; end
task :restart, :roles => :app, :except => { :no_release => true } do
run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
end
end
我已经尝试过在 github 存储库名称中添加和不添加用户名。如果它存在,我会收到上面的密码错误,但如果它不存在,我会收到以下错误:
“致命:无法读取‘ https://github.com ’的用户名:没有这样的设备或地址”
知道问题是什么吗?我假设这与我更改为私有存储库有关。我已经阅读了一些关于使用 ssh 的内容,但也没有阅读。
任何建议或帮助将不胜感激!