yumでインストール

yumでインストールする場合、PostgreSQL公式のyumレポジトリを利用するのが簡単です。

参考 PostgreSQL RPM Building Project - Yum Repository

CentOS7・PostgreSQL 9.6

CentOS7にPostgreSQL 9.6をyumでインストールする場合、以下のrpmrパッケージをインストールします。

https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
以下を実行してPostgreSQL 9.6用yumレポジトリを登録します。
# rpm -ivh https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm

成功すると、以下のようにバージョン9.6を選択できるようになります。

# yum list postgresql96*
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Available Packages
postgresql96.x86_64               9.6.2-2PGDG.rhel7      pgdg96
postgresql96-contrib.x86_64       9.6.2-2PGDG.rhel7      pgdg96
postgresql96-debuginfo.x86_64     9.6.2-2PGDG.rhel7      pgdg96
postgresql96-devel.x86_64         9.6.2-2PGDG.rhel7      pgdg96
postgresql96-docs.x86_64          9.6.2-2PGDG.rhel7      pgdg96
postgresql96-libs.x86_64          9.6.2-2PGDG.rhel7      pgdg96
postgresql96-odbc.x86_64          09.06.0100-1PGDG.rhel7 pgdg96
postgresql96-plperl.x86_64        9.6.2-2PGDG.rhel7      pgdg96
postgresql96-plpython.x86_64      9.6.2-2PGDG.rhel7      pgdg96
postgresql96-pltcl.x86_64         9.6.2-2PGDG.rhel7      pgdg96
postgresql96-server.x86_64        9.6.2-2PGDG.rhel7      pgdg96
postgresql96-tcl.x86_64           2.1.1-1.rhel7          pgdg96
postgresql96-tcl-debuginfo.x86_64 2.1.1-1.rhel7          pgdg96
postgresql96-test.x86_64          9.6.2-2PGDG.rhel7      pgdg96

サーバーをインストールする場合、以下のように実行します。

# yum install postgresql96-server

サーバーはインストール後、初期化する必要があります。