CentOS Install postgresql 9.6

Install PostgreSQL

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.rpm

For CentOS 6.x 64bit:

rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-1.noarch.rpm

For CentOS 7 64bit:

rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-1.noarch.rpm

Update the repository list using command:

yum update

Now, Install postgresql with the following command:

yum install postgresql94-server postgresql94-contrib

Initialize postgresql database using following command:

On CentOS 6.x systems:

service postgresql-9.4 initdb

On CentOS 7 systems:

/usr/pgsql-9.4/bin/postgresql94-setup initdb

Then, start postgresql service and make it to start automatically on every reboot.

On CentOS 6.x systems:

service postgresql-9.4 start
chkconfig postgresql-9.4 on

On CentOS 7 systems:

systemctl enable postgresql-9.4
systemctl start postgresql-9.4

Adjust Iptables/Firewall

Next, adjust iptables to access postgresql from remote systems.

On CentOS 6.x systems:

vi /etc/sysconfig/iptables

Add 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 restart

On CentOS 7 systems:

firewall-cmd --permanent --add-port=5432/tcp
firewall-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 - postgres

To login to postgresql, enter the command:

psql

Sample 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



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章