PostGreSQL远程连接

1、找到PostGreSQL安装目录,修改“postgresql.conf”配置文件(安装路径\data\postgresql.conf)。

若不知道安装目录,则通过服务,找到PostGreSQL运行的任务,右击“属性”可以进行查看安装的目录。

PostGreSQL远程连接_第1张图片

进入该目录,然后进行搜索“postgresql.conf”文件,找到“listen_addresses“参数后,设置listen_addresses = ‘*’,保存。若已经为之“*”,则不用改。

2、修改”pg_hba.conf“配置文件(安装路径\data\pg_hba.conf)

在最下面对应的“# "local" is for Unix domain socket connections only” “# IPv4 local connections:” “# IPv6 local connections:”进行添加:

# "local" is for Unix domain socket connections only
local   all             all                                     trust
local   all             all                                     scram-sha-256
# IPv4 local connections:
host    all             all             0.0.0.0/0               trust
host    all             all             127.0.0.1/32            scram-sha-256
# IPv6 local connections:
host    all             all             ::1/128                 trust
host    all             all             ::1/128                 scram-sha-256

PostGreSQL远程连接_第2张图片

3、开放端口

找到“控制面板”--->“系统和安全”--->“Windows Defender防火墙”--->左侧的“高级设置”--->点击右侧的“入站规则”--->“新建规则”

PostGreSQL远程连接_第3张图片

PostGreSQL远程连接_第4张图片

PostGreSQL远程连接_第5张图片

PostGreSQL远程连接_第6张图片

PostGreSQL远程连接_第7张图片

PostGreSQL远程连接_第8张图片

完成后进行查看是否添加成功:

PostGreSQL远程连接_第9张图片

4、然后在“服务”中重启PostGreSQL服务即可。

你可能感兴趣的:(PostGreSQL,postgresql,数据库)