解决方法: 首先打开data目录下的pg_hba.conf配置文件,
找到:
# IPv4 local connections: host all all 127.0.0.1/32 ident
然后把ident(或md5)改成trust,
重新启动。
psql -d template1 -U postgres -c "alter role postgres password ‘123456’;"
原文链接:https://www.f2er.com/postgresql/197100.html