本文介绍了如何使用 SqlAchemy+pg8000 中的 SSL 连接到 Postgresql?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从 SqlAlchemy 通过 pg8000 连接到 postgres 工作正常,直到我在 postgres 上启用 SSL.
Connecting to postgres via pg8000 from SqlAlchemy worked fine until I enabled SSL on postgres.
db = create_engine('postgresql+pg8000://user:pass@hostname/dbname', echo=True).connect()
现在似乎失败了:
File "/Library/Python/2.7/site-packages/pg8000/core.py", line 872, in __init__
raise InterfaceError("communication error", exc_info()[1])
sqlalchemy.exc.InterfaceError: (InterfaceError) ('communication error', error(61, 'Connection refused')) None None
推荐答案
可能你需要添加connect_args dict:
probably you need to add connect_args dict:
db = create_engine('postgresql+pg8000://user:pass@hostname/dbname', connect_args={'sslmode':'require'}, echo=True).connect()
这篇关于如何使用 SqlAchemy+pg8000 中的 SSL 连接到 Postgresql?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!