【发布时间】:2015-08-03 21:15:49
【问题描述】:
我一直在寻找一种使用 capistrano 部署我的应用程序的方法。我目前在 github 和本地服务器上托管一个小型私人仓库来尝试部署我的测试。我在下面遇到问题和错误消息。
我做了以下事情
在服务器上生成一个 ssh 密钥并成功添加它以在 repo 中部署密钥并测试(git@github.com)
在客户端生成一个 ssh 密钥并成功添加到 repo 中部署密钥
设置私有存储库。并让帐户部署者有权部署
- 配置了 deploy.rb 和 production rb 以模仿许多其他模板。
我仍然不明白为什么它会给我这样的错误
DEBUG [a5554d3d] Command: /usr/bin/env chmod +x /tmp/App/git-ssh.sh
INFO [a5554d3d] Finished in 0.020 seconds with exit status 0 (successful).
INFO [b1517df1] Running /usr/bin/env git ls-remote --heads git@github.com:aceofw
ings/App.git as deploy@192.168.1.84
DEBUG [b1517df1] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/App/git-ssh
.sh /usr/bin/env git ls-remote --heads git@github.com:aceofwings/App.git )
DEBUG [b1517df1] Permission denied (publickey).
DEBUG [b1517df1] fatal: Could not read from remote repository.
DEBUG [b1517df1]
DEBUG [b1517df1] Please make sure you have the correct access rights
DEBUG [b1517df1] and the repository exists.
(Backtrace restricted to imported tasks)
cap aborted!
SSHKit::Runner::ExecuteError: Exception while executing as deploy@192.168.1.84:
git exit status: 128
git stdout: Nothing written
git stderr: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
SSHKit::Command::Failed: git exit status: 128
git stdout: Nothing written
Deploy.rb 文件
###############Deploy.rb##################
# config valid only for current version of Capistrano
lock '3.4.0'
set :repo_url, 'git@github.com:aceofwings/App.git'
set :application, 'App'
set :user, 'deploy'
#set :pty, true
# Default branch is :master
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
# Default value for linked_dirs is []
# set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
namespace :deploy do
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
生产.rb
server '192.168.1.84', user: 'deploy', roles: %w{app db web}
#set :stage, :production
role :app, %w{deploy@192.168.1.84}
role :web, %w{deploy@192.168.1.84}
role :db, %w{deploy@192.168.1.84}
set :ssh_options, {
forward_agent: false,
auth_methods: %w(password),
password: 'Deploy4Real',
user: 'deploy'
}
【问题讨论】:
-
所以你可以在登录
deploy用户时执行ssh -T git@github.com? -
是的,我可以,我也可以在本地机器上执行相同的命令。成功归来
-
服务器上
deploy用户上的git ls-remote --heads git@github.com:aceofwings/App.git怎么样。 -
这也确实发生了。发生这种情况很奇怪
-
奇怪的是这个命令引用了另一个存储库:
INFO [b1517df1] Running /usr/bin/env git ls-remote --heads git@github.com:aceofw ings/RotairApp.git。该应用程序是从 RotairApp 重命名为 App 还是什么?