0.預(yù)先安裝HomeBrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
1. Install
安裝好HomeBrew之后,使用
brew update&brew upgrade
更新后,便可以開始postgresql了。
brew install postgresql
創(chuàng)建postgreSql數(shù)據(jù)庫:
initdb /usr/local/var/postgres
啟動服務(wù):
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
停止服務(wù):
pg_ctl -D /usr/local/var/postgres stop -s -m fast
2.創(chuàng)建角色
createuser -d -a -P postgres
創(chuàng)建測試數(shù)據(jù)庫
create database testdb;
3.測試連接
psql -Upostgres testdb;