PostgreSQL支持windows10吗[postgresql教程]
PostgreSQL支持windows10吗
PostgreSQL支持windows10。
具体的安装方法如下:
1、下载
32位:https://get.enterprisedb.com/postgresql/postgresql-10.3-1-windows-binaries.zip
64位:https://get.enterprisedb.com/postgresql/postgresql-10.3-1-windows-x64-binaries.zip
2、解压到:c:pgsql
3、设置环境变量(cmd):
setx PGHOME c:pgsqlsetx PGHOST localhost
setx PGLIB %PGHOME%lib
setx PGDATA %PGHOME%data
setx Path "%Path%;%PGHOME%in"
重新登录
4、初始化数据库
initdb.exe -D c:pgsqldata -E UTF-8 --locale=chs -U postgres -W
5、注册为系统服务(以管理员权限打开cmd)
pg_ctl register -N PostgreSQL -D c:pgsqldata
6、修改配置以支持远程连接
6.1 notepad c:pgsqldatapostgresql.conf
设置:listen_addresses = '*'
6.2 notepad c:pgsqldatapg_hba.conf
置ipv4段
host all all 0.0.0.0/0 md5
7、启动服务
net start PostgreSQL
8、关闭防火墙(视情况而定)
netsh firewall set opmode disable
推荐学习:postgresql教程
以上是 PostgreSQL支持windows10吗[postgresql教程] 的全部内容, 来源链接: utcz.com/z/527510.html