温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

PostgreSQL在windows10可不可以用

发布时间:2020-07-17 13:41:54 来源:亿速云 阅读:173 作者:清晨 栏目:编程语言

这篇文章将为大家详细讲解有关PostgreSQL在windows10可不可以用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

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:\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、修改配置以支持远程连接

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

关于PostgreSQL在windows10可不可以用就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI