解决不能连接远程postgresql

前端之家收集整理的这篇文章主要介绍了解决不能连接远程postgresql前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在远程服务器上安装了postgresql,用 pgAdmin添加服务器始终不行。

解决办法:

在远程的postgresql数据库上的pg_hba.conf中添加host all all 0.0.0.0/0 trust

并保证postgresql.conf 中参数设置为listen_addresses = '*'

修改完毕后重启:

/bea/Postgresql/9.3/bin/pg_ctl stop

/bea/Postgresql/9.3/bin/pg_ctl start

启动过程中如果报,pg_ctl: no database directory specified and environment variable PGDATA unset 则设置下环境变量

PGDATA=/bea/Postgresql/9.3/data
export PGDATA

如果报CST LOG: could not create IPv6 socket: 协议不支持的地址族,忽略,不影响连接

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

猜你在找的Postgre SQL相关文章