2017年9月18日

PostgreSQL 教學 - 快速建立資料庫與使用者 ( Create database and user using PostgreSQL )

相信 PostgreSQL 已經成為許多團隊愛用的資料庫,因此本篇文章將介紹如何透過 PostgreSQL 的指令簡單的將資料庫與使用者建立起來,雖然沒難度但仍在這記錄下來供其他人參考。 ( If you want to read this article in English, you can visit here )



建立使用者:
首先將目前使用者切換為 postgres,接著執行指令:
createuser [使用者名稱]
若有安裝 sudo 則可以:
sudo -u postgres createuser [使用者名稱]
使用者建立完成後,接著修改使用者密碼:
psql -c "alter user [使用者名稱] with encrypted password '[密碼]';"


建立資料庫:
一樣以 postgres 使用者身份執行:
createdb [資料庫名稱]
同樣地,若有安裝 sudo 則可以:
sudo -u postgres createdb [資料庫名稱]
建立好資料庫後,給予使用者權限操作資料庫:
psql -c "grant all privileges on database [資料庫名稱] to [使用者名稱];"


Environment :
  ・ Mac OS X
Reference :
  ・ PostgreSQL


熱門文章