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):
代码语言:javascript复制setx PGHOME c:pgsql
setx PGHOST localhost
setx PGLIB %PGHOME%lib
setx PGDATA %PGHOME%data
setx Path "%Path%;%PGHOME%bin"
重新登录
4、初始化数据库
代码语言:javascript复制initdb.exe -D c:pgsqldata -E UTF-8 --locale=chs -U postgres -W
5、注册为系统服务(以管理员权限打开cmd)
代码语言:javascript复制pg_ctl register -N PostgreSQL -D c:pgsqldata
6、修改配置以支持远 程连接
springboot -> fhadmin.cn
6.1 notepad c:pgsqldatapostgresql.conf
设置:listen_addresses = '*'
6.2 notepad c:pgsqldatapg_hba.conf
置ipv4段
代码语言:javascript复制 host all all 0.0.0.0/0 md5
7、启动服务
代码语言:javascript复制net start PostgreSQL
8、关闭防火墙(视情况而定)
代码语言:javascript复制netsh firewall set opmode disable