1.添加PRM包
yum install yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm
2.安装PostgreSQL 9.5
yum install postgresql96-server postgresql96-contrib
3.初始化数据库
service postgresql-9.6 initdb
4.启动服务器
service postgresql-9.6 start
5.修改配置文件
vim /var/lib/pgsql/9.6/data/postgresql.conf
添加:
listen_address = '*'
6.重启服务
service postgresql-9.6 restart