CentOS7安裝配置Postgresql
阿新 • • 發佈:2018-03-25
系統/運維 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