Fedora37 PostgreSQL14 をインストールする方法
環境
OSバージョンを確認します
# cat /etc/redhat-release
Fedora release 37 (Thirty Seven)
操作方法
1.PostgreSQL をインストールします。
# dnf module -y install postgresql:14/server
2.データベースを初期化します
# postgresql-setup --initdb * Initializing database in '/var/lib/pgsql/data' * Initialized, logs are in /var/lib/pgsql/initdb_postgresql.log
3.postgresqlを起動します
# systemctl enable --now postgresql Created symlink /etc/systemd/system/multi-user.target.wants/postgresql.service → /usr/lib/systemd/system/postgresql.service.
4.ローカルホストをリスンします
# grep listen_addresses /var/lib/pgsql/data/postgresql.conf #listen_addresses = 'localhost' # what IP address(es) to listen on;
認証方式を確認します
# grep -v -E "^#|^$" /var/lib/pgsql/data/pg_hba.conf local all all peer host all all 127.0.0.1/32 ident host all all ::1/128 ident local replication all peer host replication all 127.0.0.1/32 ident host replication all ::1/128 ident