網頁
美人時計牆
部落格
2020年11月2日 星期一
ⓒPostgreSQL 使用 Batch 初始、啟動與關閉
初始化(init.bat)
@echo off cd /d %~dp0 bin\initdb -D ./data -U postgres -W -E UTF8 -A scram-sha-256
建立服務並啟動(start.bat)
@echo off cd /d %~dp0 bin\pg_ctl register -N postgresql -D ./data net start postgresql
停止服務並移除(stop.bat)
@echo off cd /d %~dp0 net stop postgresql bin\pg_ctl unregister -N postgresql
需搭配 PostgreSQL Zip 版本使用:
https://www.enterprisedb.com/download-postgresql-binaries
後記:
工作上需要,建了腳本並做紀錄。
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
查看行動版
沒有留言:
張貼留言