按下面顺序安装:
yum installhttp://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm
yum install postgresql94-server postgresql94-contrib
/usr/pgsql-9.4/bin/postgresql94-setup initdb
servicepostgresql-9.4start (启动数据库)
修改postgresql.conf listen_addresses = '*' "*"代表所有ip都可以
修改 pg_hba.conf 配置host all all 172.16.0.0/16 trust 表示所有172.16开头的ip都可以访问
原文链接:https://www.f2er.com/postgresql/195045.html