ai didi

python - 以 postgres 用户身份连接到 PostgreSQL 时出现连接错误?

转载 作者:行者123 更新时间:2023-11-29 12:05:15 24 4
gpt4 key购买 nike

我无法使用 python 和 psycopg2 远程连接到 PostgreSQL:

这是我的代码。

>>> import psycopg2
>>> conn_string = "host='localhost' dbname='mydb' user='postgres'"
>>> print "Connecting to database\n ->%s" % (conn_string)
Connecting to database
->host='localhost' dbname='mydb' user='postgres'
>>> conn = psycopg2.connect(conn_string)

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/tools/lib/python2.7/site-packages/psycopg2/__init__.py", line 164, in connect
conn = _connect(dsn, connection_factory=connection_factory, async=async)
psycopg2.OperationalError: could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?

无法连接到服务器:连接被拒绝 服务器是否在主机“localhost”(127.0.0.1)上运行并接受 端口 5432 上的 TCP/IP 连接?

没有为 postgres 用户设置密码。

通常,我可以通过在主机上运行以下方法来连接到数据库。

 1. SSH to box
2. su - postgres
3. psql
4. \c mydb

服务器运行 PostgreSQL 9.1。

最佳答案

您正在尝试使用计算机上运行的脚本连接到 localhost 上的 PostgreSQL,但那里没有运行 PostgreSQL 服务器。

为此,您必须通过 ssh 连接到远程服务器,然后在那里运行您的 Python 脚本,其中 PostgreSQL 服务器相对于 Python 脚本是“本地的”。

(这就是运行 psql 的原因 - 因为您正在远程服务器 上运行它,其中 PostgreSQL 相对于 psql).

或者,您可以:

  • 使用 SSH 隧道转发 PostgreSQL 端口从本地计算机到远程计算机;或者

  • 在服务器上启用远程连接后,使用主机名或 IP 地址通过 TCP/IP 直接连接到远程 PostgreSQL 服务器。

请注意,仅将服务器的 IP 地址或主机名而不是 localhost 放入连接字符串 将不起作用,除非您还将服务器配置为 接受远程连接。您必须设置 listen_addresses 以监听非本地连接,添加任何所需的防火墙规则,设置 pg_hba.conf 以允许来自远程机器的连接,最好设置 SSL。所有这些都包含在 PostgreSQL 用户手册的客户端身份验证章节中。

您可能会发现 SSH 隧道更简单、更容易理解。

关于python - 以 postgres 用户身份连接到 PostgreSQL 时出现连接错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26034092/

24 4 0
文章推荐: ios - 如何在委托(delegate)方法实现中重新调用 `super`?
文章推荐: MySQL 按两列排序并按字母顺序对剩余记录进行排序
文章推荐: ios - 创建用于 AWS DynamoDB 的唯一主键
文章推荐: Django:从本地开发推送时,SQLite 覆盖 heroku 上的 POSTGRESQL 数据库
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com