我正在尝试使用以下命令连接:
conn = DBAPI.connect(host='sql2', user='XXX', password='XX', database='XX', socket_timeout=100, port=100)我现在发现我得到了以下错误:
pg8000.errors.InterfaceError: Authentication method 3 not supported by pg8000.环顾四周,我明白了这可能意味着什么:
3 = Cleartext pwd (not supported by pg8000)这里有什么建议吗?
发布于 2014-08-02 23:43:23
pg8000 supports password authentication的最新版本(1.9.14)。
https://stackoverflow.com/questions/24864950
复制相似问题