Postgresql允许远程访问

前端之家收集整理的这篇文章主要介绍了Postgresql允许远程访问前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

postgresql默认情况下,远程访问不能成功,如果需要允许远程访问,需要修改配置文件,在安装目录的data文件夹下.
1.pg_hba.conf
在该配置文件的host all all 127.0.0.1/32 md5行下添加以下配置,或者直接将这一行修改为以下配置
host all all 0.0.0.0/0 md5

如果不希望允许所有IP远程访问,则可以将上述配置项中的0.0.0.0设定为特定的IP值.
如设置ip段:192.168.1.1/24 能访问。

2.postgresql.conf
将该文件中的listen_addresses项值设定为“*”。

附:postgresql 数据库导入导出操作
pg_dump -U username databasename -b -o -Fc | gzip > filename
create database databasename with owner=username encoding=”utf8″;
pg_restore -U username -d databasename -Fc filename

注意远程访问时关闭服务器的防火墙。

原文链接:https://www.f2er.com/postgresql/196492.html

猜你在找的Postgre SQL相关文章