## 檢視可用版本
brew search postgresql
## 安裝指定版本
brew install postgresql@15
## 按照上述安裝日誌提示,配置 postgresql
echo 'export PATH="/usr/local/opt/postgresql@15/bin:$PATH"' >> ~/.zshrc
## 檢視安裝版本
psql -V
## 初始化資料庫
initdb --locale=C -E UTF-8 /usr/local/var/postgresql@15
echo 'export PGDATA=/usr/local/var/postgres' >> ~/.zshrc
source ~/.zshrc
## 指定日誌的啟動命令
## pg_ctl -D '/usr/local/var/postgresql@15' -l 日誌檔案 start
## 啟動命令
brew services start postgresql@15
## 建立資料庫使用者
createuser cookie -P
## 使用資料庫使用者登入
psql -h 127.0.0.1 -p 5432 -d postgres -U cookie
## 授權
GRANT ALL PRIVILEGES ON DATABASE postgres to cookie;
ALTER ROLE cookie CREATEDB;
## 停止
brew services stop postgresql@15