博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PostgreSQL服务端监听设置及client连接方法
阅读量:5900 次
发布时间:2019-06-19

本文共 1200 字,大约阅读时间需要 4 分钟。

背景介绍:

  PostgreSQL服务端执行在RedHat Linux上,IP为:192.168.230.128

  client安装在Windows XP上, IP为:192.168.230.1

配置方法:

 1.  改动服务端/opt/postgresql/data/postgresql.conf文件,将

#listen_address='localhost'改成listen_address='*'

 2. 改动/opt/postgresql/data/gp_hba.conf文件

在当中添加client的ip,例如以下,注意最后一行:

# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD# "local" is for Unix domain socket connections onlylocal   all         all                               trust# IPv4 local connections:host    all         all         127.0.0.1/32          trust# IPv6 local connections:host    all         all         ::1/128               trust#kevin add# IPv4 local connections:host    all         all         192.168.230.1/32          trust

 

3.重新启动PG服务

[postgres@localhost data]$ pg_ctl restartwaiting for server to shut down....LOG:  received smart shutdown requestLOG:  autovacuum launcher shutting downLOG:  shutting downLOG:  database system is shut down doneserver stoppedserver starting[postgres@localhost data]$ LOG:  database system was shut down at 2011-07-09 14:54:29 CSTLOG:  autovacuum launcher startedLOG:  database system is ready to accept connections[postgres@localhost data]$

4. 使用client连接,配置例如以下:

5.点击“确定”进行连接,成功后,例如以下:

转载地址:http://lrhsx.baihongyu.com/

你可能感兴趣的文章
angularjs-paste-upload
查看>>
RXjs相关
查看>>
linux基础命令 head
查看>>
objective c:import和include的区别, ""和<>区别
查看>>
spring SchedulerFactoryBean 没有创建 Scheduler的实现类bea
查看>>
基于cobbler实现自动化安装系统
查看>>
The Shared folder with you
查看>>
BodyPaint__操作步骤
查看>>
poj 2234 Matches Game
查看>>
2018年全国多校算法寒假训练营练习比赛(第五场)
查看>>
sax方式解析XML学习笔记
查看>>
Springboot配置(上)
查看>>
Luogu345: [POI2007]POW-The Flood
查看>>
java--Eclipse for mac 代码提示(代码助手,代码联想)快捷键修改
查看>>
Jdom的简单操作
查看>>
left join on/right join on/inner join on/full join on连接
查看>>
Codeforces 582B Once Again
查看>>
template.helper 多参数
查看>>
RadioButton布局图片+文字 实现tabhost效果
查看>>
access中设置不等于
查看>>