步骤1:编辑Postgresql配置文件以建立信任关系,无需密码登录:
vi /var/lib/pgsql/data/pg_hba.conf
旧线:
local all postgres password
将其更改为:
local all postgres trust
步骤2:重新启动Postgresql服务器:
service postgresql restart
步骤3:更改密码:
psql -U postgres template1 -c alter user postgres with password ‘newpassword’;
步骤4:密码已更新。恢复配置文件的原始设置:
vi /var/lib/pgsql/data/pg_hba.conf
旧线:
local all postgres trust
将其更改为:
local all postgres password
步骤5:重新启动服务器并使用新密码访问Postgresql Server。
service postgresql restart