heroku本番環境(production)でデプロイ後の接続エラー対処方法
課題が終わると思ったらエラーが、、
データベース接続設定を忘れていたので、忘備録のために。。後学の初心者の為に。。。
webアプリをherokuへデプロイして、アプリを開こうとしたら、エラーの文字が。。
We're sorry, but something went wrong.
If you are the application owner check the logs for more information.
原因は..
Rails側の設定でPostgreSQLを使用するための設定を忘れたのが原因だった。
本来なら以下の手順でしていれば問題なかった。
1.Gemfile
2.config/database.yml
1の最後の行に
group :production do
gem 'pg', '>= 0.18', '< 2.0'
end
を追加。
$ bundle install --without production
実行。
production:
adapter: postgresql
encoding: unicode
pool: 5
database: アプリ名_production
username: アプリ名
password:<%= ENV['大文字アプリ名_DATABASE_PASSWORD'] %>
コミットを忘れずに。
$ git add .
$ git commit -m'#'
もう一度デプロイ。
$ git push heroku master
開くか確認。
https://Herokuアプリ名.herokuapp.com/
OKなら、
$ heroku run rails db:migrate
本来この手順ならここで終わりだが。。
私の場合は
最初のデプロイでconfig/database.ymlを設定せずにいたために
PostgreSQLが自動的にインストールされませんでした。
これを解決するには手動でインストール。
$ heroku addons:create heroku-postgresql:hobby-dev
再度マイグレーション。
$ heroku run rails db:migrate
これでPostgreSQLに接続できるはずです。。。
Author And Source
この問題について(heroku本番環境(production)でデプロイ後の接続エラー対処方法), 我々は、より多くの情報をここで見つけました https://qiita.com/shutyan/items/4c1443cdb6a599b1d063著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .