前言:
PostgreSQL使用存储在数据库数据目录中的pg_hba.conf配置文件来控制客户端的连接认证参数。
-将该值设置为“trust”意味着您可以以postgres`的身份登录,而无需输入密码。
-将值设置为“md5”的默认值意味着您应使用密码以postgres`身份登录
步骤:
**1、**所以我们第一步就是去设置pg_dba.conf 文件,把IPv4的属性改为trust
# TYPE DATABASE USER ADDRESS METHOD# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
host replication all 127.0.0.1/32 md5
host replication all ::1/128 md5
**2、**重启pgsql的服务,可以通过windows的服务中心,或者使用命令进行重启
**3、**切换到PostgreSQL安装目录,本文安装目录为C:\Program Files\PostgreSQL\12\bin,直接在资源管理器地址栏输入cmd,执行命令
psql -U postgres
。
再次执行命令
postgres=# ALTER USER Postgres WITH PASSWORD ‘你的更改后的密码’;
PS C:\Program Files\PostgreSQL\12\bin> .\psql -U postgres
psql (12.2)
输入 "help" 来获取帮助信息.postgres=# ALTER USER Postgres WITH PASSWORD '';
ALTER ROLE
postgres=#
**4、**最后,还原 pg_dba.conf 文件,属性从trust设置回md5 ,重启pgsql服务.并尝试使用新密码连接数据库!