10
8

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 5 years have passed since last update.

PG::ConnectionBad の対処法

Posted at

#PostgreSQLが使えない時

railsでrail s や rails db:migrate
などのコマンドを使用した際にいかのようなエラーが出た時の対処法です。

could not connect to database postgres: could not connect to server: No such file or directory
        Is the server running locally and accepting
        connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

この様な場合は、SQLサーバーが起動していない事が多いそうです。

サーバーのインストールなどの経験は無く、
はじめてのことであったのでかなり苦戦しました。

#インストールするだけでは使えない
SQLサーバーはインストールするだけではだめで、起動することで使用可能になります。

自動でSQLサーバー立ち上がる設定や環境に慣れてしまっているせいで、
自分で起動する感覚が僕にはありませんでした。

以下のコマンドを実行することで無事にエラー解決が出来ました!

 $ sudo service postgresql start
    Starting postgresql service:                              [  OK  ]

#参考
以下のサイトが参考になりました。

https://www.postgresql.jp/
https://lets.postgresql.jp/

10
8
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
10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?