1. 官網(wǎng)地址
官網(wǎng)上提供了安裝參考步驟:點擊此處查看官網(wǎng)
2. 安裝RPM
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
3. 安裝客戶端
yum install postgresql11
4. 安裝服務(wù)器端
yum install postgresql11-server
5. 安裝依賴包
yum install postgresql11-libs
yum install postgresql11-contrib
yum install postgresql11-devel
6. 數(shù)據(jù)庫初始化與設(shè)置自啟動
/usr/pgsql-11/bin/postgresql-11-setup initdb
systemctl enable postgresql-11
systemctl start postgresql-11
這一步初始化數(shù)據(jù)庫命令會在 /var/lib/pgsql 目錄下創(chuàng)建名稱為11文件夾,11為數(shù)據(jù)庫版本,如果安裝的是其他版本,對應(yīng)的是其版本號(9.4、9.5);這里如果已經(jīng)有對應(yīng)版本的文件夾了,初始化這一步會報錯,需要你自行去刪除對應(yīng)的文件夾,再去初始化。
7. 修改數(shù)據(jù)庫登錄密碼
數(shù)據(jù)庫初始化后,默認會創(chuàng)建一個名為 postgres 的linux登錄用戶,這里進行密碼修改
[root@anleku ~]# passwd postgres
8. 登錄PostgreSQL
[root@anleku ~]# su - postgres
-bash-4.2$ psql
psql (11.5)
Type "help" for help.
postgres=#
9. 創(chuàng)建用戶來訪問PostgreSQL
postgres=# CREATE USER dbuser WITH PASSWORD '*****';
10. 創(chuàng)建數(shù)據(jù)庫,并賦予用戶權(quán)限
postgres=# CREATE DATABASE exampledb OWNER dbuser;
postgres=# GRANT ALL PRIVILEGES ON DATABASE exampledb TO dbuser;
11. 退出psql
postgres=# \q
12. 修改配置文件讓遠程計算機訪問
[root@anleku ~]# vim /var/lib/pgsql/11/data/postgresql.conf
[root@anleku ~]# vim /var/lib/pgsql/11/data/pg_hba.conf
13. 重新啟動服務(wù)
[root@anleku ~]# systemctl restart postgresql-11
最后記得開啟防火墻端口
[root@anleku ~]# firewall-cmd --query-port=5432/tcp
no
[root@anleku ~]# firewall-cmd --add-port=5432/tcp
success
[root@anleku ~]# firewall-cmd --add-port=5432/tcp --zone=public --permanent
success
總結(jié)
以上所述是小編給大家介紹的CentOS7下PostgreSQL 11的安裝和配置教程,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!