PostgreSQL的远端配置

实验

想自己搭个Postgresql做实验。
下载的win版数据库(postgresql-9.4.15-1-windows-x64.exe) + navicat120_pgsql_en_x64.exe。
安装完postgresql, 在本地,用自带的pgAdminIII 是可以查询数据库的,但是用wireshake抓不到包,估计没走socket,而是直接走的dll接口。
在另外一台实验机上,装navicat120_pgsql,却连不上数据库
同事去查了资料,要改postgresql配置文件C:\Program Files\Postgresql\9.4\data\pg_hba.conf.
数据库所在的计算机ip,作为服务器IP加入监听才行。

# TYPE  DATABASE        USER            ADDRESS                 METHOD # IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# @note this is the db ip from remote connect!
host    all             all             192.168.66.66/24        md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost,by a user with the
# replication privilege.
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5

这时,远端的navicat120_pgsql再连接192.168.66.66的端口5432,就可以访问postgresql数据库了。

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...