我最近在Windows 7上安装了PostgreSQL,每次我尝试使用CMD执行SQL命令时,我都会收到此错误
createdb: could not connect to database template1: FATAL: password authentication failed for user "R-61"
哪里R-61是我的Windows机器用户名。
这是我如何使用CMD与pgSQL
- 首先我cd到pgSQL bin文件夹
$ cd C:\xampp\pgsql\9.1\bin
- 我尝试创建一个数据库
$ createdb NEWDATABASE
我收到输入密码的提示。这是我迷惑的地方,因为我不知道密码是什么。 我试过我的窗口用户密码,密码为
postgres
超级用户,似乎没有用。这是我得到的错误消息createdb: could not connect to database template1: FATAL: password authentication failed for user "R-61"
有人知道解决方案吗? 我在考虑将用户表格改为R-61
postgres
超级用户会工作,但我不知道该怎么做。
非常需要你的帮助。