linux登录pg数据库密码,PostgreSQL:修改数据库用户的密码

本文介绍了当尝试通过`psql`修改PostgreSQL数据库用户密码失败的问题及其解决步骤。错误在于混淆了数据库用户密码和Linux用户密码。正确方法包括:临时修改pg_hba.conf为trust,用新密码登录pgadmin,执行`alter role`命令,然后恢复pg_hba.conf设置为MD5认证。
摘要由CSDN通过智能技术生成

1.  psql.bin: FATAL: password authentication failed for user "postgres"#su  postgres

-bash-3.2$psql -U postgres

postgres=#alter user postgres with password 'new password';

postgres=#\q

这种修改方式是错误的,重新登录postgres用户,会提示以下错误信息:psql.bin: FATAL: password authentication failed for user "postgres"

因为 postgreSQL数据库用户和密码 与 Linux 用户postgres的密码是独立存储的,所以 修改数据库密码 需要修改 数据库用户角色的密码 而不是Linux用户的密码。

针对以上问题, 可以按一下步骤:

(1)先把pg_hba.conf  中 远程Ip对应的Method 改为 trust,保存后,重新加载 pg_hba.confpostgres@ubuntu:~/bin$ ./pg_ctl reload

server signaled

(2)然后,在pgadmin客户端中使用修改过的密码进行登录,登录进去后,执行以下命令:alter role postgres with password 'yourpassword'

(3)接下来,需要重新在Linux shell中登录 postgresroot@ubuntu:~# su - postgres

$ psql

Password:

psql.bin (9.5.13)</

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值