【发布时间】:2016-05-17 08:46:52
【问题描述】:
我正在尝试将我的 Ruby on Rails 应用程序部署到托管在 Digital Ocean 上的生产服务器。将存储库设置为“公共”时没有问题,但是当我将存储库设置为 “私有” 时出现“致命:身份验证失败”错误:
SSHKit::Runner::ExecuteError: Exception while executing on host 178.62.16.69: git exit status: 128
git stdout: remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/ryzalyusoff/xxxxxx.git/'
git stderr: Nothing written
SSHKit::Command::Failed: git exit status: 128
git stdout: remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/ryzalyusoff/xxxxxx.git/'
git stderr: Nothing written
Tasks: TOP => git:check
(See full trace by running task with --trace)
The deploy has failed with an error: Exception while executing on host 178.62.16.69: git exit status: 128
git stdout: remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/ryzalyusoff/xxxxxx.git/'
git stderr: Nothing written
那么,我应该怎么做才能部署到我的生产服务器而无需将我的 repo 设置为“Public”?
谢谢!
-------------- 更新1 ------------- ---------------
我已经生成了公钥并将其放在我的 github 帐户中。我已经通过使用以下命令对其进行了测试来确认这一点:
ssh -T git@github.com
-------------- 更新 2 ------------- ---------------
我已将我的 set :repo_url 更改为 ssh,但错误仍然存在。这是我的 deploy.rb 文件:
# Change these
server '178.62.16.69', port: 22, roles: [:web, :app, :db], primary: true
set :repo_url, 'git@github.com:ryzalyusoff/xxxxxx.git'
set :application, 'xxxxxx'
set :user, 'deploy'
set :puma_threads, [4, 16]
set :puma_workers, 0
# Don't change these unless you know what you're doing
set :pty, false
set :use_sudo, false
set :stage, :production
set :deploy_via, :remote_cache
set :deploy_to, "/home/#{fetch(:user)}/apps/#{fetch(:application)}"
set :puma_bind, "unix://#{shared_path}/tmp/sockets/#{fetch(:application)}-puma.sock"
set :puma_state, "#{shared_path}/tmp/pids/puma.state"
set :puma_pid, "#{shared_path}/tmp/pids/puma.pid"
set :puma_access_log, "#{release_path}/log/puma.error.log"
set :puma_error_log, "#{release_path}/log/puma.access.log"
set :ssh_options, { forward_agent: true, user: fetch(:user), keys: %w(~/.ssh/id_rsa.pub) }
set :puma_preload_app, true
set :puma_worker_timeout, nil
set :puma_init_active_record, true # Change to false when not using ActiveRecord
## Defaults:
# set :scm, :git
# set :branch, :master
# set :format, :pretty
# set :log_level, :debug
# set :keep_releases, 5
set :whenever_identifier, ->{ "myapp_#{fetch(:stage)}" }
namespace :puma do
desc 'Create Directories for Puma Pids and Socket'
task :make_dirs do
on roles(:app) do
execute "mkdir #{shared_path}/tmp/sockets -p"
execute "mkdir #{shared_path}/tmp/pids -p"
end
end
before :start, :make_dirs
end
namespace :deploy do
desc "Make sure local git is in sync with remote."
task :check_revision do
on roles(:app) 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
end
desc 'Initial Deploy'
task :initial do
on roles(:app) do
before 'deploy:restart', 'puma:start'
invoke 'deploy'
end
end
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
invoke 'puma:restart'
end
end
before :starting, :check_revision
after :finishing, :compile_assets
after :finishing, :cleanup
after :finishing, :restart
end
错误
【问题讨论】:
标签: ruby-on-rails git github capistrano digital-ocean