はじめに
データベースで操作でPG::ConnectionBad: local user with ID 502 does not exist
というエラーが発生した行った対処法を記事に残したいと思います。
エラーの発生
以下のコマンドを実行した時に
コンソール
bundle exec rails db:migrate:status
このようなエラー文が出ました
=> Running via Spring preloader in process 74769
rake aborted!
ActiveRecord::ConnectionNotEstablished: local user with ID 502 does not exist
/Users/mouriyuka/runteq/pf/shere-lerning-video/vendor/bundle/ruby/3.0.0/gems/activerecord-
6.1.5/lib/active_record/connection_adapters/postgresql_adapter.rb:83:in `rescue in new_client'
/Users/mouriyuka/runteq/pf/shere-lerning-video/vendor/bundle/ruby/3.0.0/gems/activerecord-
....
対処法
springが悪さをしているようだったため、stopしました
コンソール
bundle exec spring stop
=> Spring stopped.
その後、起動するようになりました!