RHEL 9.2 PostgreSQL をインストールする方法

環境
# cat /etc/redhat-release
Red Hat Enterprise Linux release 9.2 (Plow)

インストール方法
1.次の dnf コマンドを実行して、組み込みの PostgreSQL モジュールを無効にします。
# dnf -qy module disable postgresql

2.公式のPostgreSQL Yum リポジトリを有効にします。

# dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm

3.PostgreSQL 15 サーバー パッケージとクライアント パッケージをインストールします。

# dnf install -y postgresql15-server

4.、PostgreSQL データベースを初期化します。
# /usr/pgsql-15/bin/postgresql-15-setup initdb

5.PostgreSQL-15 サービスを開始して、システム起動時に自動的に開始されるようにします。
# systemctl start postgresql-15
# systemctl enable postgresql-15

6.PostgreSQLのステータスを確認します

# systemctl status postgresql-15
# systemctl is-enabled postgresql-15

 

RHEL9

Posted by arkgame