【PostgreSQL】設定ファイルについて

PostgreSQL

環境

CentOS7
PostgreSQL 11.18

postgresql.conf

通常dataディレクトリに格納されている。postgresql.confを編集することでパラメータ操作をすることができる。筆者の環境では/var/lib/pgsql/11/dataにある。

postgresql.confの中身

#search_path = '"$user", public'        # schema names
#row_security = on
#default_tablespace = ''                # a tablespace name, '' uses the default
#temp_tablespaces = ''                  # a list of tablespace names, '' uses
                                        # only default tablespace
#check_function_bodies = on
#default_transaction_isolation = 'read committed'
#default_transaction_read_only = off
#default_transaction_deferrable = off
#session_replication_role = 'origin'
~

書式は下記の通り。
パラメータ名 = 設定値

「#」から行末まではコメントアウトになる

パラメータの詳細については下記が参考になる
POSTGRESQLCO.NF

コメント

タイトルとURLをコピーしました