刚刚在 Windows 7 上安装了 Postgresql。安装过程中没有要求我设置密码。当我运行 psql 时,我被要求输入密码。谷歌搜索了一些,唯一可能的默认密码是“postgre”。但这没有用。还尝试了空白密码和我的 Windows 密码。他们都没有工作。阅读一些如何重设密码的高级资料,但这不可能吗?我在这里想念什么?我应该输入什么密码?
问问题
123904 次
1 回答
13
尝试这个:
Open PgAdmin -> Files -> Open pgpass.conf
你会得到pgpass.conf
窗口底部的路径。转到该位置并打开此文件,您可以在那里找到您的密码。
如果上述方法不起作用,您可以考虑尝试以下方法:
1. edit pg_hba.conf to allow trust authorization temporarily
2. Reload the config file (pg_ctl reload)
3. Connect and issue ALTER ROLE / PASSWORD to set the new password
4. edit pg_hba.conf again and restore the previous settings
5. Reload the config file again
于 2013-09-09T13:17:20.593 回答