PostgreSQL 在windows 配置

2022-04-20  本文已影响0人  IT祖师爷

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:\pgsqlsetx PGHOST localhostsetx PGLIB %PGHOME%\libsetx PGDATA %PGHOME%\datasetx Path"%Path%;%PGHOME%\bin"

重新登录

4、初始化数据库

initdb.exe -Dc:\pgsql\data -EUTF-8--locale=chs -U postgres -W

5、注册为系统服务(以管理员权限打开cmd)

pg_ctlregister-NPostgreSQL-Dc:\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段

hostallall0.0.0.0/0md5

7、启动服务

netstartPostgreSQL

8、关闭防火墙(视情况而定)

netsh firewallsetopmodedisable

上一篇下一篇

猜你喜欢

热点阅读