【转】PostgreSQL IP地址访问配置

原文:http://blog.csdn.net/shuaiwang/article/details/1793294

1.PostgreSQL的安装目录,进入data文件夹,打开postgresql.conf文件,修改listen_addresses,如下

【转】PostgreSQL IP地址访问配置# - Connection Settings -
【转】PostgreSQL IP地址访问配置
【转】PostgreSQL IP地址访问配置listen_addresses = 'localhost,123.123.123.123'        # what IP address(es) to listen on; 
【转】PostgreSQL IP地址访问配置                    # comma-separated list of addresses;
【转】PostgreSQL IP地址访问配置                    # defaults to 'localhost', '*' = all
【转】PostgreSQL IP地址访问配置                    # (change requires restart)
【转】PostgreSQL IP地址访问配置port = 5432                # (change requires restart)
 
注意:这里的'123.123.123.123'改称你的IP。

2-
也是在data文件夹下,打开pg_hba.conf文件,修改如下:

【转】PostgreSQL IP地址访问配置# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
【转】PostgreSQL IP地址访问配置
【转】PostgreSQL IP地址访问配置# IPv4 local connections:
【转】PostgreSQL IP地址访问配置host      all         all                 127.0.0.1/32          md5
【转】PostgreSQL IP地址访问配置host      all       postgres         123.123.0.0/16      password
【转】PostgreSQL IP地址访问配置
【转】PostgreSQL IP地址访问配置# IPv6 local connections:
【转】PostgreSQL IP地址访问配置#host    all         all         ::1/128               md5

注意:这里的'123.123.0.0/16'是你允许访问你的数据库的网络,password是指连接连接数据库时需要密码;postgres是指用户名,all是指所有数据库~

3-
到控制面板-管理工具-服务中,重新启动PostgreSQL服务

上一篇:codevs 3185 队列练习1


下一篇:树的直径&树的重心