railsサーバを起動させたとき, PostgreSQLと接続されていない
terminal
1$ rails s -b 0.0.0.0 -p 5000
以前開発していたアプリケーションを久々に起動させようと思い, サーバを立てたのですが
PG::ConnectionBad FATAL: password authentication failed for user "kampachiserver" FATAL: password authentication failed for user "kampachiserver"
といわれてしまい, 接続できません.
"kampachiserver"は私のサーバのユーザーネームです.
rails側にはkampachiserverがPostgreSQLに接続するための設定が既に書かれています.
# /config/database.yml default: &default adapter: postgresql encoding: unicode # For details on connection pooling, see Rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: kampachiserver password: ******************** host: localhost
このような症状に対して, どのように調べたらよいか見当がつかず投稿しました.
エラーコードに見覚えのある方, 詳しい方, 何卒ご教授願います.
バージョン情報
Ubuntu 18.04
Rails 5.2.3
PostgreSQL 10.14