修改postgresql用户password

壮心未与年俱老,死去犹能作鬼雄。这篇文章主要讲述修改postgresql用户password相关的知识,希望能为你提供帮助。


?su - postgres?
?psql?

alter user postgres with password new password;



查看用户:
?select rolname,rolpassword from pg_authid; ?
?参考文档:?????https://www.jianshu.com/p/16683b09e9f0??????
?1、当采用 smart模式无法关机的时候,可以使用如下命令:?
kill -s SIGTERM < 对象PID>

【修改postgresql用户password】2、采用 fast模式无法关机的时候,可以使用如下命令:
kill -s SIGINT < 对象PID>

3、采用 immediate模式无法关机的时候,可以使用如下命令:
kill -s SIGQUIT < 对象PID>


    推荐阅读