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

本文共 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://jxego.baihongyu.com/

你可能感兴趣的文章
centos常用第三方yum源
查看>>
模板技巧之:物联预算模板点击提交没反应的原因
查看>>
ORA-06502 awr
查看>>
订单需求
查看>>
职业规划,人生道理
查看>>
android 测试 --使用sqlite3查看手机数据库系统
查看>>
KVM(一)安装篇
查看>>
Oracle 学习之RMAN(十二)恢复实战--控制文件丢失
查看>>
BGP路由黑洞实验
查看>>
Utuntu14.04下salt的使用
查看>>
centos使用gmail发送邮件
查看>>
SQL中各种join用法--join、innerJoin、leftJoin、rightJoin
查看>>
win10部署sonar代码扫描工具
查看>>
我的友情链接
查看>>
二叉树
查看>>
图解CentOS6.8安装详情
查看>>
80后...奔三的我们都该看看
查看>>
【入门教程】使用C#开发SequoiaDB的应
查看>>
Ajax框架
查看>>
在 Kubernetes 上运行 PostgreSQL
查看>>