PostgreSQL12最新版のインストール
※9.5はpostgresql-9.5のインストールとUPSERTを参照。
https://www.postgresql.org/download/linux/redhat/でバージョン、プラットフォーム、アーキテクチャを選択すると実行すべきコマンドが表示される。
dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm dnf -qy module disable postgresql dnf install postgresql12 dnf install postgresql12-server /usr/pgsql-12/bin/postgresql-12-setup initdb systemctl enable postgresql-12 systemctl start postgresql-12
以前はバージョンごとにリポジトリが分かれていたが一つに集約された。
またデフォルトのモジュールはmodule disableで無効にする必要がある。