前提・実現したいこと
Capistrano3でEC2にLaravelプロジェクトをデプロイしたい
環境
・デプロイ実行環境
Windows10 Pro 64bit
Ruby 3.0.1
gem 3.2.15
Bundler 2.2.16
Capistrano 3.14.1
capistrano-laravel 1.2.3
php7.4
Laravel 8.38
・デプロイ先(EC2)
CentOS7
apache2.4
php7.4
デプロイ先にRubyは入っていません。
発生している問題・エラーメッセージ
IPアドレスとGitリポジトリのアドレスは変更しています。
$ bundle exec cap test deploy 00:00 git:wrapper 01 mkdir -p /tmp ✔ 01 user@IPアドレス 0.440s Uploading /tmp/git-ssh-Laravel-test-m-uchiyama.sh 100.0% 02 chmod 700 /tmp/git-ssh-Laravel-test.sh ✔ 02 user@IPアドレス 0.116s 00:00 git:check 01 git ls-remote git@github.com:hoge/fuga-app.git HEAD 01 ERROR: Repository not found. 01 fatal: Could not read from remote repository. 01 01 Please make sure you have the correct access rights 01 and the repository exists. #<Thread:0x000001661b223580 C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/sshkit-1.21.2/lib/sshkit/runners/parallel.rb:10 run> terminated with exception (report_on_exception is true): C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/sshkit-1.21.2/lib/sshkit/runners/parallel.rb:15:in `rescue in block (2 levels) in execute': Exception while executing on host IPアドレス: git exit status: 128 (SSHKit::Runner::ExecuteError) git stdout: ERROR: Repository not found.\r fatal: Could not read from remote repository.\r \r Please make sure you have the correct access rights\r and the repository exists.
該当のソースコード
config/deploy/test.rb
role :web, %w{IPアドレス} set :deploy_to, "/var/www/html/test" set :laravel_server_user, 'user' set :laravel_upload_dotenv_file_on_deploy, false set :laravel_set_acl_paths, false append :linked_files, ".env" set :ssh_options, { keys: %w(~/.ssh/server_key.pem ~/.ssh/id_rsa), forward_agent: true, auth_methods: %w(publickey), user: "user", }
試したこと
Capistranoを使うのが初めてだったため検証用にEC2インスタンス(インスタンスA)を用意し、そちらでデプロイができることを確認しました。
その後config/deploy以下に保存される環境設定ファイルを新しく用意し、インスタンスBに同じリポジトリをデプロイしようとしたところ上記のエラーが発生しました。
インスタンスBの設定ファイルはインスタンスAの環境設定ファイルから、デプロイ先IPアドレス、使用するsshキー、ログインユーザー名を変更して作りました。
githubに登録してある鍵とサーバーにログインする鍵は別になるため両方の鍵のパスを記載しています。(もしかしたら不要なのかもしれませんが…)
もちろんssh-agentでgithubに登録している鍵を持った状態でデプロイコマンドを実行しています。
同様のエラーで調べるとリポジトリの移動やリネームをした時起きるという情報がありましたが、それは一度もしていません。
https://qiita.com/lumbermill/items/b4ddaa0ead2b9201040f
またforward_agentをfalseにすると成功するという話もあったため、EC2側にgithubに登録した鍵を置いた状態でforward_agentをfalseにしましたが、改善されませんでした。
https://stackoverflow.com/questions/30282567/deploying-rails-app-with-capistrano-error-repository-not-found
鍵関係の何かだとは思うのですが……完全に行き詰っており困っています。
どなたかお知恵を貸していただけますと幸いです。
あなたの回答
tips
プレビュー