Para instalar o PostgreSQL (64 bits) no CentOS 7; execute os seguintes comandos:
wget https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-1.noarch.rpm
rpm -Uvh http://yum.postgresql.org/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-1.noarch.rpm
yum update
yum -y install postgresql96-server postgresql96-devel postgresql96-contrib
Inicialize o banco de dados postgresql:
/usr/pgsql-9.6/bin/postgresql96-setup initdb
Inicie o serviço postgresql e ative-o na inicialização:
systemctl enable postgresql-9.6
systemctl start postgresql-9.6