赞
踩
解决办法:改配置文件,设置为无密码登录模式,修改密码,然后改回配置文件,重启服务即可!
更改:
psql -U postgres (这里修改成功后会直接跳过输密码的过程)
psql -U postgres
postgres=# alter user postgres with password ‘你要设置的密码’; (注意,命令最后的分号不能省)
postgres=# alter user postgres with password ‘你要设置的密码’;
postgres=# \q