PostgreSQLの設定ファイルの場所を探すコマンド(show config_file)
PostgreSQLの設定ファイルpostgresql.conf
はOSやインストール方法によって場所が異なる。
稼働しているPostgreSQLの設定ファイルの場所を確認するには以下のコマンドを実行する。
まずpsql
でPostgreSQLに接続する。
$ psql -U postgres
上記ではpostgres
ユーザでpostgres
データベースに接続しているが任意のユーザやデータベースでオーケー。
psql
のプロンプトでshow config_file;
コマンドを実行する。
> show config_file;
config_file
-------------------------------------------------
/opt/homebrew/var/postgresql@14/postgresql.conf
(1 row)
上記の例では/opt/homebrew/var/postgresql@14/postgresql.conf
に設定ファイルが見つかる。
\第一線のプログラマーの行動原理を学べる!/