码迷,mamicode.com
首页 > 其他好文 > 详细

postgress无法远程连接问题解决方案

时间:2014-08-08 11:56:05      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   文件   问题   size   sql   res   


1 修改文件postgresql.conf

加入listen_addresses=‘*‘

默认是localhost, ‘*‘表示监视所有主机(any)

2 修改文件pg_hba.conf

在host all all 127.0.0.1/32 md5

行下加入以下行
host all all 192.168.101.0/24 trust

配置192.168.101.3/32即CIDR地址可以获得连接的不同限制
192.168.101.3/32 或192.168.101.3 255.255.255.255,只能允许192.168.101.3的主机访问;
192.168.101.0/24 或192.168.101.3 255.255.255.0,允许IP为192.168.101.xx 的主机可以访问;
192.168.0.0/16 或192.168.101.3 255.255.0.0允许IP为192.168.xx.xx 的主机可以访问;
192.0.0.0/8 或192.0.0.0 255.0.0.0 允许IP为192.xx.xx.xx的主机访问。
地址的含义:32、24、16、8分别代表网络地址;
255代表子网掩码

*修改完之后别忘了重启PostgreSQL服务

 

postgress无法远程连接问题解决方案,布布扣,bubuko.com

postgress无法远程连接问题解决方案

标签:style   color   os   文件   问题   size   sql   res   

原文地址:http://www.cnblogs.com/sixingyuan/p/3898635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!