使用psycopg2将问题连接到数据库

时间:2013-05-07 20:04:27

标签: django postgresql

我是django的新手。我正在使用eclipse IDE,我的操作系统是Windows 7.我正在尝试使用postgre sql.My模型页面是这样的:enter image description here。我的设置页面是这样的:{ {0}}。当我尝试键入python manage.py sql Mystudent其中Mystudent是我的应用时,它会显示operational error:fe_sendauth: no password supplied。所以当我输入用户名test而密码为password时显示operational error:password authentication failed for user 'test'。请帮助我。

1 个答案:

答案 0 :(得分:1)

您应该在settings.py文件中指定主机和端口。如果你在本地运行postgresql,它将是:

'HOST': 'localhost',
'PORT': '5432',

修改

另请注意,mydb.db不是postgres的有效数据库名称。