gpt4 book ai didi

python - 通过 SSH 和 SQLAlchemy 将 Python 连接到 Redshift

转载 作者:行者123 更新时间:2023-12-05 07:08:20 25 4
gpt4 key购买 nike

我当前的连接配置如下,这是针对 redshift db

con=('postgresql://username:password@hostname:port/databasename')
server = SSHTunnelForwarder(
('ssh host', 22),
ssh_username="-",
ssh_password="-",
remote_bind_address=('db host', port)
)

server.start()
local_port = str(server.local_bind_port)
engine = sa.create_engine(con)

######## Reaches here then times out when reading the table
df_read = pd.read_sql_table('tablename',engine)

但是,Redshift 数据库也有 SSH,这可能会影响连接?它创建了引擎,但在读取 pd.read_sql_query 中的 SQL 时出现此错误。

 (psycopg2.OperationalError) could not connect to server: Connection timed out (0x0000274C/10060)
Is the server running on host "xxx" (xxx) and accepting
TCP/IP connections on port xxx?

(Background on this error at: http://sqlalche.me/e/e3q8)

最佳答案

您不能通过 SSH 连接到 Redshift 集群,但可以使用 SSL 来保护连接。

关于python - 通过 SSH 和 SQLAlchemy 将 Python 连接到 Redshift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61890203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com