0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Rails]rails sを実行した際のPG::ConnectionBadの対処法

Posted at

最近の勉強で学んだ事を、ノート代わりにまとめていきます。
主に自分の学習の流れを振り返りで残す形なので色々、省いてます。
Webエンジニアの諸先輩方からアドバイスやご指摘を頂けたらありがたいです!

#rails sを実行すると画像のようなエラー画面になります
9b14f558d5741ade85174b2f5f175e78.png

この様な場合は、PostgreSQLサーバーが起動していない事が原因の様です。
PG::ConnectionBad の対処法 - Qiita

ただ、macの場合は、以下のコマンドは使えないので

$ sudo service postgresql start

以下のPostgreSQL起動コマンドを使用すればエラーが無くなりました!
ローカル Mac で PostgreSQL を起動したり停止したり - Qiita

# Start
$ postgres -D /usr/local/var/postgres
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?