1. 程式人生 > >CentOS7安裝配置Postgresql

CentOS7安裝配置Postgresql

系統/運維 Linux

執行命令

Yum install postgresql-server

技術分享圖片

Yum install postgresql-contrib

技術分享圖片

安裝完成後,檢查postgresql的服務狀態

Systemctl status postgresql

技術分享圖片

服務未啟動

執行systemctl start postgresql啟動服務

執行過程有可能會報錯

Job for postgresql.service failed because the control process exited with error code. See "systemctl status postgresql.service" and "journalctl -xe" for details.

技術分享圖片

安裝postgresql後需要初始化數據庫

執行postgresql-setup initdb

技術分享圖片

再次啟動postgresql服務

技術分享圖片

用ps命令查看postgresql進程信息

技術分享圖片

用su – postgres切換到postgresql用戶執行psql的操作

技術分享圖片

使用\l查看postgresql的所有數據庫信息

技術分享圖片

到此可以看到postgresql已正確安裝。為了以後每次開機可以啟動postgresql,執行如下命令

技術分享圖片

到此postgresql基本的安裝和配置完成。


更多文章關註微信公眾號“挨踢學霸”

CentOS7安裝配置Postgresql