我是django的新手。我正在使用eclipse IDE,我的操作系统是Windows 7.我正在尝试使用postgre sql.My模型页面是这样的:。我的设置页面是这样的:{ {0}}。当我尝试键入python manage.py sql Mystudent
其中Mystudent是我的应用时,它会显示operational error:fe_sendauth: no password supplied
。所以当我输入用户名test
而密码为password
时显示operational error:password authentication failed for user 'test'
。请帮助我。
答案 0 :(得分:1)
您应该在settings.py
文件中指定主机和端口。如果你在本地运行postgresql,它将是:
'HOST': 'localhost',
'PORT': '5432',
修改强>
另请注意,mydb.db
不是postgres的有效数据库名称。