PostgreSQLに接続中のセッションを切断する
概要
rails migrateなどでエラーが出た時などの対処
code:text
rails aborted!
ActiveRecord::StatementInvalid: PG::ObjectInUse: ERROR: database "hogedb" is being accessed by other users
DETAIL: There are 10 other sessions using the database.
/app/bin/rails:6:in `<main>'
pg_terminate_backend関数を使うことでセッションを切断できる
手順
PIDを調べる
select * from pg_stat_activity;
select pg_terminate_backend(ここにPID);
参照