CentOS Stream 9にPostgreSQL 16をdnf経由でインストール
PostgreSQL Serverを開発サーバーにインストールしたときの覚書。 環境: CentOS Stream 9, PostgreSQL 16.0 1. PostgreSQL Serverをインストール 公式サイトを参考に。 参考: PostgreSQL: Linux downloads (Red Hat family) リポジトリを検索。 # dnf search postgresql # dnf info postgresql-server v13.11だった。 モジュールリストにあるか確認。 # dnf module list postgresql CentOS Stream 9 - AppStream Name Stream Profiles Summary postgresql 15 client, server [d] PostgreSQL server and client module postgresql 16 client, server [d] PostgreSQL server and client module あったのでモジュールからインストールする。 # dnf module install postgresql:16 データベース初期化。サービスの名前を確認して自動起動オンにして起動。 # postgresql-setup --initdb # systemctl list-unit-files -t service # systemctl enable postgresql # systemctl start postgresql # systemctl status postgresql 設定ファイル確認。 # cd /var/lib/pgsql/data # less postgresql.conf 2. Windowsからネットワーク経由で接続 postgresユーザーの接続パスワード設定。 # su