建立 PostgreSQL 远程连接失败

发布于 2025-01-09 06:20:40 字数 984 浏览 1 评论 0原文

我尝试过其他答案中提到的方法,但发现都失败了。我对配置所做的如下。

  1. 修改了“pg_hba.conf”文件
# IPv4 local connections:
#host    all             all             127.0.0.1/32            md5
host    all             all             0.0.0.0/0               md5
  1. 修改了“postgresql.conf”文件
# - Connection Settings -
listen_addresses = '*'
  1. 重新启动服务器
sudo service postgresql restart

但仍然无法建立远程连接。

psycopg2.OperationalError: could not connect to server: Connection refused
    Is the server running on host "xxx.xxx.xxx.xxx" and accepting
    TCP/IP connections on port 5432?

通过以下命令打开端口 5432:

xx@xx:~$ netstat -nlt|grep :5432
tcp        0      0 0.0.0.0:5432            0.0.0.0:*               LISTEN
tcp6       0      0 :::5432                 :::*                    LISTEN

我可以 ping 通 PostgreSQL 所在的 IP 地址。

I have tried the method mentioned on the other answers, but only to find they all failed. What I did to the configuration are below.

  1. Modified the "pg_hba.conf" file
# IPv4 local connections:
#host    all             all             127.0.0.1/32            md5
host    all             all             0.0.0.0/0               md5
  1. Modified the "postgresql.conf" file
# - Connection Settings -
listen_addresses = '*'
  1. Restart the server
sudo service postgresql restart

But I still failed to build the remote connection.

psycopg2.OperationalError: could not connect to server: Connection refused
    Is the server running on host "xxx.xxx.xxx.xxx" and accepting
    TCP/IP connections on port 5432?

The port 5432 was open by the following command:

xx@xx:~$ netstat -nlt|grep :5432
tcp        0      0 0.0.0.0:5432            0.0.0.0:*               LISTEN
tcp6       0      0 :::5432                 :::*                    LISTEN

And I could ping the IP address where the PostgreSQL was.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文