码迷,mamicode.com
首页 > 数据库 > 详细

Ubuntu下访问Windows中Postgresql

时间:2017-02-20 22:39:07      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:文件   用户   hba   设置   防火墙   data   post   sts   tno   

  因为项目的原因,需要将Ubuntu中的一些信息记录到Windows中的Postgresql数据库中,查看网上信息,最后成功了,特地记录以下,需要以下步骤:

(1)在Windows中Postgresql目录下找到pg_hba.conf文件,并做修改。

  在此文件中添加一行,格式参考下面七种:
local      database  user  auth-method  [auth-option]
host       database  user  CIDR-address  auth-method  [auth-option]
hostssl    database  user  CIDR-address  auth-method  [auth-option]
hostnossl  database  user  CIDR-address  auth-method  [auth-option]
host       database  user  IP-address  IP-mask  auth-method  [auth-option]
hostssl    database  user  IP-address  IP-mask  auth-method  [auth-option]
hostnossl  database  user  IP-address  IP-mask  auth-method  [auth-option]
  如host all all 192.168.1.0/24 md5,表示允许网段192.168.1.0上的所有主机使用所有合法的数据库用户名访问数据库,并提供加密的密码验证
(2)在Windows中Postgresql目录下找到postgresql.conf文件,修改postgresql.conf文件,将数据库服务器的监听模式修改为监听所有主机发出的连接请求。
  将文件中listen_addresses=’localhost’更改为listen_addresses=’*‘
  
  做完以上两步,重启数据库服务,检查是否能够正常访问,不行的话检查防火墙设置。
(3)在Windows防火墙页面,选择左侧高级设置,添加规则。

Ubuntu下访问Windows中Postgresql

标签:文件   用户   hba   设置   防火墙   data   post   sts   tno   

原文地址:http://www.cnblogs.com/HelloMoying/p/6421827.html

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