PostgreSQL 在windows 配置

fhadmin發表於2022-04-20

PostgreSQL支援windows10。

具體的安裝方法如下:

1、下載

32位:get.enterprisedb.com/postgresql/postgresql-10.3-1-windows-binaries.zip

64位:get.enterprisedb.com/postgresql/postgresql-10.3-1-windows-x64-binaries.zip

2、解壓到:c:\pgsql\

3、設定環境變數(cmd):

setx PGHOME c:\pgsql
setx PGHOST localhost
setx PGLIB %PGHOME%\lib
setx PGDATA %PGHOME%\data
setx Path "%Path%;%PGHOME%\bin"

重新登入

4、初始化資料庫

initdb.exe -D c:\pgsql\data -E UTF-8 --locale=chs -U postgres -W

5、註冊為系統服務(以管理員許可權開啟cmd)

pg_ctl register -N PostgreSQL -D c:\pgsql\data

6、修改配置以支援遠 程連線

springboot ->  fhadmin.cn

6.1 notepad c:\pgsql\data\postgresql.conf

設定:listen_addresses = '*' 

6.2 notepad c:\pgsql\data\pg_hba.conf

置ipv4段

   host    all    all    0.0.0.0/0    md5

7、啟動服務

net start PostgreSQL

8、關閉防火牆(視情況而定)

netsh firewall set opmode disable

 



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31558068/viewspace-2887942/,如需轉載,請註明出處,否則將追究法律責任。

相關文章