Ubuntu16.04安裝PostgreSQL並使用pgadmin3管理數據庫_圖文詳解

版權聲明:本文地址http://blog.csdn.net/caib1109/article/details/51582663
歡迎非商業目的的轉載, 做者保留一切權利sql

 

apt安裝postgresql-9.5和圖形管理工具pgadmin3

主程序
sudo apt install postgresql-9.5
數據庫圖形界面
sudo apt install pgadmin3數據庫

Ubuntu終端命令建立數據庫

修改默認用戶postgres的密碼

postgres用戶還沒設置密碼, 須要修改密碼, 在終端輸入
sudo -u postgres psql template1
繼續輸入
ALTER USER postgres with encrypted password 'your_password';
\q 退出
就修改好了, 重啓postgresql
sudo systemctl restart postgresql.serviceubuntu

使用postgre官方的圖形化管理工具pgadmin3

pgadmin3
點擊左上角的插頭圖標(鏈接數據庫)
輸入以下參數:服務器

屬性 屬性值
名稱 隨便
主機名 localhost
服務
維護數據庫 postgres
用戶 postgres
密碼 你剛剛的密碼

右鍵」服務器組–>服務器–>數據庫」,如圖
pgadmin3工具

相關文章
相關標籤/搜索