Go to the PostgreSQL repository download page , and add the PostgreSQL 9.4 repository depending upon your server architecture.
For CentOS 6.x 32bit:
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-i386/pgdg-centos94-9.4-1.noarch.rpmFor CentOS 6.x 64bit:
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-1.noarch.rpmFor CentOS 7 64bit:
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-1.noarch.rpmUpdate the repository list using command:
yum updateNow, Install postgresql with the following command:
yum install postgresql94-server postgresql94-contribInitialize postgresql database using following command:
On CentOS 6.x systems:
service postgresql-9.4 initdbOn CentOS 7 systems:
/usr/pgsql-9.4/bin/postgresql94-setup initdbThen, start postgresql service and make it to start automatically on every reboot.
On CentOS 6.x systems:
service postgresql-9.4 startchkconfig postgresql-9.4 on
On CentOS 7 systems:
systemctl enable postgresql-9.4systemctl start postgresql-9.4
Adjust Iptables/Firewall
Next, adjust iptables to access postgresql from remote systems.
On CentOS 6.x systems:
vi /etc/sysconfig/iptablesAdd the following line:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
Save and exit the file. Restart iptables service.
service iptables restartOn CentOS 7 systems:
firewall-cmd --permanent --add-port=5432/tcpfirewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
Access PostgreSQL command prompt
The default database name and database user are “postgres” . Switch to postgres user to perform postgresql related operations:
su - postgresTo login to postgresql, enter the command:
psqlSample Output:
psql (9.4.0)
Type "help" for help.
postgres=#
To exit from posgresql prompt, type \q following by quit to return back to the Terminal.
pgadmin4 新建服务器出现错误: Peer authentication failed for user "postgres"
# vim /var/lib/pgsql/9.6/data/pg_hba.conf
在该配置文件的host all all 127.0.0.1/32 md5行下添加以下配置,或者直接将这一行修改为以下配置
host all all 0.0.0.0/0 md5
# vim /var/lib/pgsql/9.6/data/postgresql.conf
将该文件中的listen_addresses项值设定为“*”,在9.0 windows版中,该项配置已经是“*”无需修改。# service postgresql-9.6 restart
注:通过本机命令行出现: Peer authentication failed for user "postgres"
# vim /var/lib/pgsql/9.6/data/postgresql.conf
#local all all peer
local all all md5
pgadmin4 新建服务器出现错误: fe_sendauth: no password supplied# su - postgres
postgres=# ALTER USER postgres WITH PASSWORD 'password';
ALTER ROLE
postgres=# \q
# service postgresql-9.6 restart