如何更改 PostgreSQL 用户的密码?
要不使用密码登录:
sudo -u user_name psql db_name
忘记密码时重置密码:
ALTER USER user_name WITH PASSWORD 'new_password';