PostgreSQL数据库忘记密码解决方案

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据库忘记密码解决方案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

打开data目录下的pg_hba.conf配置文件,找到:

# IPv4 local connections: host all all 127.0.0.1/32 md5

把md5改成trust

重启动

psql -d template1 -U postgres -c "alter role postgres password '123456';"

要不要把trust改回来就随便了。 原文链接:https://www.f2er.com/postgresql/197475.html

猜你在找的Postgre SQL相关文章