Linux下postgres忘记密码的处理

tech2023-02-17  110

进入postgres安装目录,也就是su - postgres后pwd显示的路径,进入pgsql_data下修改pg_hba.conf,将md5修改成trust(无密码登录),

su - postgres,进入到bin目录下,也就是/pgsql/bin,执行psql -U postgres , ALTER USER 你的用户名 WITH PASSWORD ‘你的密码’; 再把trust改回md5(密码登录),重启postgres。

最新回复(0)