自動デプロイ時のエラーを解決したい
Capistranoを使用し、自動デプロイで
bundle exec cap production deploy
実行時にエラーが発生します。
手動ではデプロイが成功しており、 Capistrano導入に原因があると考えています。
発生している問題・エラーメッセージ
** DEPLOY FAILED ** Refer to log/capistrano.log for details. Here are the last 20 lines: INFO START 2021-02-16 02:52:23 +0900 cap production deploy INFO --------------------------------------------------------------------------- DEBUG [00afcde9] Running [ -d $HOME/.rbenv/versions/2.6.5 ] as ec2-user@3.112.161.136 DEBUG [00afcde9] Command: [ -d $HOME/.rbenv/versions/2.6.5 ] DEBUG [00afcde9] Finished in 0.375 seconds with exit status 0 (successful). INFO [b3c374e1] Running /usr/bin/env mkdir -p /tmp as ec2-user@3.112.161.136 DEBUG [b3c374e1] Command: ( export RBENV_ROOT="$HOME/.rbenv" RBENV_VERSION="2.6.5" ; /usr/bin/env mkdir -p /tmp ) INFO [b3c374e1] Finished in 0.101 seconds with exit status 0 (successful). DEBUG Uploading /tmp/git-ssh-cb125aecc22425d62e17.sh 0.0% INFO Uploading /tmp/git-ssh-cb125aecc22425d62e17.sh 100.0% INFO [ea5684f7] Running /usr/bin/env chmod 700 /tmp/git-ssh-cb125aecc22425d62e17.sh as ec2-user@3.112.161.136 DEBUG [ea5684f7] Command: ( export RBENV_ROOT="$HOME/.rbenv" RBENV_VERSION="2.6.5" ; /usr/bin/env chmod 700 /tmp/git-ssh-cb125aecc22425d62e17.sh ) INFO [ea5684f7] Finished in 0.099 seconds with exit status 0 (successful). INFO [9feb8343] Running /usr/bin/env git ls-remote git@github.com:/10susumu/moto-app.git HEAD as ec2-user@3.112.161.136 DEBUG [9feb8343] Command: ( export RBENV_ROOT="$HOME/.rbenv" RBENV_VERSION="2.6.5" GIT_ASKPASS="/bin/echo" GIT_SSH="/tmp/git-ssh-cb125aecc22425d62e17.sh" ; /usr/bin/env git ls-remote git@github.com:/10susumu/moto-app.git HEAD ) DEBUG [9feb8343] Permission denied (publickey). DEBUG [9feb8343] fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
config/deploy.rb
ruby
1# capistranoのバージョンを記載。固定のバージョンを利用し続け、バージョン変更によるトラブルを防止する 2lock '3.15.0' 3 4# Capistranoのログの表示に利用する 5set :application, 'moto-app' 6 7# どのリポジトリからアプリをpullするかを指定する 8set :repo_url, 'git@github.com:/10susumu/moto-app.git' 9 10# バージョンが変わっても共通で参照するディレクトリを指定 11set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system', 'public/uploads') 12 13set :rbenv_type, :user 14set :rbenv_ruby, '2.6.5' 15#カリキュラム通りに進めた場合、’2.6.5’ です 16 17# どの公開鍵を利用してデプロイするか 18set :ssh_options, auth_methods: ['publickey'], 19 keys: ['~/.ssh/susumu.pem'] 20 21 22# プロセス番号を記載したファイルの場所 23set :unicorn_pid, -> { "#{shared_path}/tmp/pids/unicorn.pid" } 24 25# Unicornの設定ファイルの場所 26set :unicorn_config_path, -> { "#{current_path}/config/unicorn.rb" } 27set :keep_releases, 5 28 29# デプロイ処理が終わった後、Unicornを再起動するための記述 30after 'deploy:publishing', 'deploy:restart' 31namespace :deploy do 32 task :restart do 33 invoke 'unicorn:restart' 34 end 35end
config/unicorn.rb
#サーバ上でのアプリケーションコードが設置されているディレクトリを変数に入れておく app_path = File.expand_path('../../../', __FILE__) #アプリケーションサーバの性能を決定する worker_processes 1 #アプリケーションの設置されているディレクトリを指定 working_directory "#{app_path}/current" # 「current」を指定 #Unicornの起動に必要なファイルの設置場所を指定 pid "#{app_path}/shared/tmp/pids/unicorn.pid" #ポート番号を指定 listen "#{app_path}/shared/tmp/sockets/unicorn.sock" #エラーのログを記録するファイルを指定 stderr_path "#{app_path}/shared/log/unicorn.stderr.log" #通常のログを記録するファイルを指定 stdout_path "#{app_path}/shared/log/unicorn.stdout.log" #Railsアプリケーションの応答を待つ上限時間を設定 timeout 60 #以下は応用的な設定なので説明は割愛 preload_app true GC.respond_to?(:copy_on_write_friendly=) && GC.copy_on_write_friendly = true check_client_connection false run_once = true before_fork do |server, worker| defined?(ActiveRecord::Base) && ActiveRecord::Base.connection.disconnect! if run_once run_once = false # prevent from firing again end old_pid = "#{server.config[:pid]}.oldbin" if File.exist?(old_pid) && server.pid != old_pid begin sig = (worker.nr + 1) >= server.worker_processes ? :QUIT : :TTOU Process.kill(sig, File.read(old_pid).to_i) rescue Errno::ENOENT, Errno::ESRCH => e logger.error e end end end after_fork do |_server, _worker| defined?(ActiveRecord::Base) && ActiveRecord::Base.establish_connection end
###nginxの設定
upstream app_server { # Unicornと連携させるための設定 server unix:/var/www/moto-app/shared/tmp/sockets/unicorn.sock; } # {}で囲った部分をブロックと呼ぶ。サーバの設定ができる server { # このプログラムが接続を受け付けるポート番号 listen 80; # 接続を受け付けるリクエストURL ここに書いていないURLではアクセスできない server_name 3.112.161.136; # クライアントからアップロードされてくるファイルの容量の上限を2ギガに設定。デフォルトは1メガなので大きめにしておく client_max_body_size 2g; # 接続が来た際のrootディレクトリ root /var/www/moto-app/current/public; # assetsファイル(CSSやJavaScriptのファイルなど)にアクセスが来た際に適用される設定 location ^~ /assets/ { gzip_static on; expires max; add_header Cache-Control public; root /var/www/moto-app/current/public; } try_files $uri/index.html $uri @unicorn; location @unicorn { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; proxy_pass http://app_server; } error_page 500 502 503 504 /500.html; }
試したこと
類似の質問などを調べSSH鍵の設定に問題があると考え、githubのSSH公開などを見直しましたが解決しません。
ec2のターミナル操作で
ssh -T git@github.com
は成功しています。
参考にしているサイトはプログラミングスクールのサイトです。
補足情報(FW/ツールのバージョンなど)
Capistrano(3.15.0)
ruby(2.6.5)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。