菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
368
0

PostgreSQL数据库服务端监听设置及客户端连接方法教程

原创
05/13 14:22
阅读数 8606

一、背景介绍:

本文所述PostgreSQL服务端运行在RedHat linux上,IP为:192.168.230.128
客户端安装在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文件:

在其中增加客户端的ip,如下,注意最后一行:

# TYPE DATABASE  USER    CIDR-ADDRESS     METHOD

# "local" is for Unix domain sohttp://www.cppcns.comcket connections only
local  all     all                trust
# IP编程客栈v4 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     trusRWVJRRt

3.重启PG服务:

[postgres@localhost data]$ pg_ctl restart
waithttp://www.cppcns.coming for server to shut down....LOG: received smart shutdown request
LOG: autovacuum launcher shutting down
LOG: shutting down
LOG: database system is shut down
 done
server stopped
server starting
[postgres@localhost data]$ LOG: database system was shut down at 2011-07-09 14:54:29 CST
LOG: autovacuum launcher started
LOG: database system is ready to accept connections

[postgres@localhost data]$

4. 使用客户端连接,配置如下:

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

本文标题: PostgreSQL数据库服务端监听设置及客户端连接方法教程
本文地址: http://www.cppcns.com/shujuku/postgresql/111405.html

发表评论

0/200
368 点赞
0 评论
收藏
为你推荐 换一批