postgresql 开启远程访问

1.如果服务器启用了防火墙,需要在防火墙上开启 5432 端口。

2.修改 PostgreSQL 配置文件 postgresql.conf、postgresql.conf,Linux 配置文件所在路径 /etc/postgresql/9.1/main或者(/var/lib/pgsql/data)

其中:配置文件 postgresql.conf 中删除 Connection Settings 段部分注释,修改为:

listen_addresses = '*' # what IP address(es) to listen on;
port = 5432 # (change requires restart)
max_connections = 100 # (change requires restart)

配置文件 pg_hba.conf 中 IPv4 local connections 段添加行 host all all 192.168.0.0/16 md5 ,修改为:

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.0.0/16 md5

重启 PostgreSQL ,输入命令:service postgresql restart

或者(systemctl restart postgresql.service)

 

posted @ 2020-10-14 19:35  郑道杰  阅读(746)  评论(0编辑  收藏  举报