如何从本地系统连接到 Linode 中的 postgres
Posted
技术标签:
【中文标题】如何从本地系统连接到 Linode 中的 postgres【英文标题】:How to connect to postgres in Linode from local system 【发布时间】:2022-01-22 19:48:44 【问题描述】:我有一个 python 脚本可以将数据添加到 postgres 数据库。在测试期间,我在本地系统中创建了一个数据库,它运行良好。现在我的数据库在 linode 中运行。我不确定如何从本地系统连接到数据库。我将数据库详细信息存储在 python 文件中,如下所示
DATABASE = 'my_database'
HOST = <IP_ADDRESS> # the ip_address of the linode instance
PORT = '5432'
USER = 'database_user'
PASSWORD = 'database_password'
我使用上面的代码访问数据库。如果数据库在本地主机中运行,则主机等于HOST = 'localhost'
。
当我从本地系统运行 python 脚本连接到数据库时,这是我得到的消息
psycopg2.OperationalError: connection to server at "<IP_ADDESS>", port 5432 failed: Connection refused
Is the server running on that host and accepting TCP/IP connections?
我不知道如何连接到在 linode 中运行的数据库。
【问题讨论】:
A)postgresql.conf
中的服务器 listen_addresses
设置不正确。请参阅Connections 和/或 B) 有防火墙阻止端口 5432
。
【参考方案1】:
我通过编辑pg_hba.conf
解决了这个问题。
在 linode 实例中,导航到 /var/lib/pgsql/data
。
在目录中,打开pg_hba.conf
并在IPv4本地连接下添加以下行
host all all <local system's Public IP ADDRESS>/32 md5
-
保存文件并重新启动 postgres。
启动到 linode 实例的 SSH 隧道
将数据库详细信息中的主机和端口更改为
127.0.0.1
,以及在隧道期间选择的端口。就我而言,它是5433
现在运行 python 脚本应该使本地系统能够连接到在 linode 实例中运行的 postgres 服务器。
【讨论】:
不,你是通过防火墙隧道解决的。以上是关于如何从本地系统连接到 Linode 中的 postgres的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Docker 容器中的 python 脚本连接到 Ubuntu 上的本地 SQL 服务器
如何从 cli 本地连接到现有的弹性 beanstalk 实例?