版權聲明:本文地址http://blog.csdn.net/caib1109/article/details/51582663
歡迎非商業目的的轉載, 做者保留一切權利sql
主程序
sudo apt install postgresql-9.5
數據庫圖形界面
sudo apt install pgadmin3
數據庫
postgres用戶還沒設置密碼, 須要修改密碼, 在終端輸入
sudo -u postgres psql template1
繼續輸入
ALTER USER postgres with encrypted password 'your_password';
\q
退出
就修改好了, 重啓postgresql
sudo systemctl restart postgresql.service
ubuntu
pgadmin3
點擊左上角的插頭圖標(鏈接數據庫)
輸入以下參數:服務器
屬性 | 屬性值 |
---|---|
名稱 | 隨便 |
主機名 | localhost |
服務 | 空 |
維護數據庫 | postgres |
用戶 | postgres |
密碼 | 你剛剛的密碼 |
右鍵」服務器組–>服務器–>數據庫」,如圖
工具