##したいこと
capistranoを使って本番環境にデプロイしたい。
rails6
ruby 2.6.3
##エラー内容
ローカルでbundle exec cap production deployをしたところ次のエラーが表示されました。
Tasks: TOP => deploy:migrate (See full trace by running task with --trace) The deploy has failed with an error: Exception while executing as shogo@13.115.179.212: Exception while executing as shogo@13.115.179.212: rake exit status: 1 rake stdout: Nothing written rake stderr: /var/www/rails/Portfolio/shared/bundle/ruby/2.6.0/gems/bootstrap-4.4.1/lib/bootstrap/version.rb:four: warning: already initialized constant Bootstrap::VERSION /var/www/rails/Portfolio/shared/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/lib/bootstrap-sass/version.rb:two: warning: previous definition of VERSION was here /var/www/rails/Portfolio/shared/bundle/ruby/2.6.0/gems/bootstrap-4.4.1/lib/bootstrap/version.rb:five: warning: already initialized constant Bootstrap::BOOTSTRAP_SHA /var/www/rails/Portfolio/shared/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/lib/bootstrap-sass/version.rb:three: warning: previous definition of BOOTSTRAP_SHA was here rake aborted! PG::ConnectionBad: invalid port number: "ENV['DATABASE_PORT']"
やったこと
・ローカルファイル内のconfig/database.yml
をみて、ENV['DATABASE_PORT']
の記述がないことを確認。そしてmasterにpushしてbundle exec cap production deploy
をしたところ同じエラーが表示された。
※ローカルファイルでポート名を指定するファイルはdattabase.ymlしかないので次はec2内のファイルをみる↓
・ディレクトリ内にあるdeploy.rbではシンボリックファイルの場所はEc2内のアプリ名/shared/config/settings.yml
内を参照するようにしているので設定をみたがENV['DATABASE_PORT'
の記述はなかった。
シンボリックファイルの設定は下記になります。
https://github.com/shota0701nemoto/Portfolio/blob/master/config/deploy.rb
・次にEC2内のアプリ名/config/database.yml
のファイルをみたところ、ENV['DATABASE_PORT']
を設定していたのでdevelopment、testそれぞれにport: 22を上書きしてbundle exec cap production deploy
をしたところ、同じエラーPG::ConnectionBad: invalid port number: "ENV['DATABASE_PORT']"
が表示された。
productionのportにはElasticIPを指定していたので、試しませんでした。
##推測
どこかのファイルのホスト名が間違っていることは理解したが、ENV['DATABASE_PORT']
の記述があるファイルが見つからない。
ここのエラーで表示されているENV['DATABASE_PORT']は、どの部分を参照しているのでしょうか?
動くのを確認するためにはportを環境変数ではなく、一時的に直で入力すればうごくのかと思いまして直で入力したのですが同じエラーになり、エラーがどのファイルのことを行っているのかさえ理解できれば解決できると思いました。
また、いづれかのファイルのENV['DATABASE_PORT']
より上で指定しているコードは読み込めている?ため環境変数周りのエラーではない?側面もあることに気がつきました。
こちらの解決法、ヒントなどがあれば教えていただきたいです。
ENV['DATABASE_PORT'] の中身は5432になります。
必要なファイルが他にあれば追加します。
deploy.rb
set :pg_without_sudo, false set :pg_host, 'localhost' set :pg_database, 'portfolio' set :pg_username, 'postgres' set :pg_ask_for_password, true set :linked_files, %w{.env} lock '3.14.0' set :application, 'Portfolio' set :repo_url, 'git@github.com:shota0701nemoto/Portfolio.git' set :branch, 'master' set :deploy_to, '/var/www/rails/Portfolio' set :linked_files, fetch(:linked_files, []).push('config/settings.yml') set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system') set :keep_releases, 5 set :rbenv_ruby, '2.6.3' set :log_level, :debug namespace :deploy do desc 'Restart application' task :restart do invoke 'unicorn:restart' end desc 'Create database' task :db_create do on roles(:db) do |host| with rails_env: fetch(:rails_env) do within current_path do execute :bundle, :exec, :rake, 'db:create' end end end end desc 'Run seed' task :seed do on roles(:app) do with rails_env: fetch(:rails_env) do within current_path do execute :bundle, :exec, :rake, 'db:seed' end end end end after :publishing, :restart after :restart, :clear_cache do on roles(:web), in: :groups, limit: 3, wait: 10 do end end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。