无法从psycopg2连接到PostgreSQL - OperationalError:FATAL:role" victoryhb"不存在

时间:2015-02-17 04:56:26

标签: python postgresql ubuntu

我在Ubuntu上,我使用以下命令安装PostgreSQL

sudo apt-get install postgresql-9.4 pgadmin3

似乎安装成功,PostgreSQL服务正在侦听端口5432,我可以使用 postgres 用户帐户下的 psql 与PG服务器进行交互。 但现在我尝试使用psycopg2从Python连接PG:

psycopg2.connect(database="mydb", user="postgres")

我遇到以下错误:

OperationalError: FATAL:  role "postgres" does not exist
尽管角色" postgres"通过键入" \ du"已确认已存在命令在 psql

任何可能导致这个奇怪问题的提示?

P.S。

0 个答案:

没有答案