gpt4 book ai didi

python - 连接数据库时出错

转载 作者:太空宇宙 更新时间:2023-11-04 04:28:39 24 4
gpt4 key购买 nike

我无法使用 psycopg2 连接到 Linux 中的数据库。我在 Linux 中安装了 postgresql,我的代码是:

import psycopg2

def testEgg():

conn = psycopg2.connect("dbname = myDatabase user = postgres port = 5432")

cur = conn.cursor()
cur.execute("CREATE TABLE egg ( num integer, data varchar);")
cur.execute("INSERT INTO egg values ( 1, 'A');")
conn.commit()

cur.execute("SELECT num from egg;")
row = cur.fetchone()

print row

cur.close()
conn.close()

testEgg()

我收到错误:

psycopg2.OperationalError: FATAL:  Ident authentication failed for user "postgres"

此代码在 windows7 中运行良好,但在 linux 中出现上述错误。linux 还有什么需要我做的吗?任何建议将不胜感激。谢谢。

最佳答案

这不是您的代码的问题,而是由于 postgres 用户的许可造成的问题。

您应该创建一个新用户来访问您的数据库并替换它:

conn = psycopg2.connect("dbname = myDatabase user = postgres port = 5432")

by(将 <your_user> 替换为您的真实用户名...)

conn = psycopg2.connect("dbname = myDatabase user = <your_user> port = 5432")

要在 postgres 上创建新用户,您可以使用“createuser”二进制文件。该文档可用 here .

关于python - 连接数据库时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5963739/

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