Capistrano部署远程:无效的用户名或密码Github [英] Capistrano Deploy remote: Invalid username or password Github

查看:88
本文介绍了Capistrano部署远程:无效的用户名或密码Github的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用Capistrano部署Rails应用程序,但是认证失败。执行Capistrano时的输出显示服务器的正确IP(deploy@46.101.45.52),但日志文件显示(deploy@159.65.33.89),这是我以前的IP。我在github上为服务器和本地开发计算机设置了ssh密钥。

Trying to deploy a rails app using Capistrano, but authentication fails. The output while executing Capistrano, shows the correct IP for the server(deploy@46.101.45.52), but the logfile shows (deploy@159.65.33.89), my previous IP. I have ssh keys set on github, both for the server and the local development machine.

Capistrano日志

Capistrano log

    DEBUG [deb63a13] Command: ( export GIT_ASKPASS="/bin/echo" GIT_SSH="/tmp/git-ssh-geofly-production-david.sh" ; /usr/bin/env git ls-remote https://github.com/uberdave/geofly.me.git HEAD )
 DEBUG [deb63a13]   remote: Invalid username or password.
 DEBUG [deb63a13]   f
 DEBUG [deb63a13]   atal: 
 DEBUG [deb63a13]   A
 DEBUG [deb63a13]   uthentication failed for '
 DEBUG [deb63a13]   h
 DEBUG [deb63a13]   ttps://github.com/uberdave/geofly.me.git/

Capfile

set :rvm_type, :user
set :rvm_ruby_version, '2.5.0'

# Load DSL and set up stages
require "capistrano/setup"
# Include default deployment tasks
require "capistrano/deploy"
require  'capistrano/bundler'
require 'capistrano/rails'

require 'capistrano/rvm'
require 'capistrano/passenger'


# Load the SCM plugin appropriate to your project:
#
# require "capistrano/scm/hg"
# install_plugin Capistrano::SCM::Hg
# or
# require "capistrano/scm/svn"
# install_plugin Capistrano::SCM::Svn
# or
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }

deploy.rb

deploy.rb

 # config valid for current version and patch releases of Capistrano

lock "~> 3.10.1"



 set :passenger_restart_with_touch, false

set :application, "geofly"

set :repo_url, "git@github.com:uberdave/geofly.git"

#"ssh://github.com:uberdave/geofly.me.git"

#https://github.com/uberdave/geofly.me.git



set :deploy_to, '/home/deploy/geofly'



append :linked_files, "config/database.yml", "config/secrets.yml"

append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets", "vendor/bundle", "public/system", "public/uploads"

production.rb

production.rb

server '46.101.45.52', user: 'deploy', roles: %w{app db web}


推荐答案

Capistrano正在部署该应用程序,但该应用程序在服务器端发生了故障

Capistrano was deploying the app,but the app was failing server side.

这篇关于Capistrano部署远程:无效的用户名或密码Github的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆