ubuntu – pgAdmin无法连接到PostgreSQL 9.1

前端之家收集整理的这篇文章主要介绍了ubuntu – pgAdmin无法连接到PostgreSQL 9.1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在 Windows上使用pgAdmin连接到localhost的Ubuntu 12.04 VM上运行的postgresql 9.1.8.主机的端口5432转发到VM的端口5432.

pgAdmin错误

连接到服务器时出错:无法从服务器接收数据:软件导致连接中止(0x00002745 / 10053)

postgresql.conf中

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------

# - Connection Settings -

listen_addresses = '*'
port = 5432

的pg_hba.conf

local   all             postgres                                peer

# TYPE  DATABASE        USER            ADDRESS                 METHOD

host    all             all             0.0.0.0/0               md5
host    all             all             127.0.0.1/32            md5
host    all             all             ::1/128                 md5

netstat -nlp | 5432

tcp        0      0 127.0.0.1:5432          0.0.0.0:*               LISTEN      29035/postgres
unix  2      [ ACC ]     STREAM     LISTENING     50823    29035/postgres      /var/run/postgresql/.s.PGsql.5432

iptables规则

iptables -I INPUT -p tcp --dport 5432 -j ACCEPT

Postgresql服务已重新启动,pgAdmin仍然提供错误.是什么原因导致了它?

有同样的问题,它归结为3个步骤:

1- On Mavericks(10.6相同)端口5432已经被采用
需要这个:— config.vm.network“forwarded_port”,guest:5432,host:5433’on’Vagrantfile’然后你用端口5433通过pgadmin3连接

postgresql.conf中的2- listen_address =’*’#,允许服务器作为来自所有ip的套接字连接进行监听

3-需要在’pg_hba.conf’中启用主机

我把postgresql所需的配置shell脚本放在vagrant上:

https://gist.github.com/haknick/7394776

原文链接:https://www.f2er.com/ubuntu/347945.html

猜你在找的Ubuntu相关文章