修改密码
^
postgres=# ALTER USER postgres WITH PASSWORD ‘postgres’; ALTER ROLE
2. 修改linux系统postgres用户的密码
```python
#删除用户postgres的密码
sudo passwd -d postgres
# 设置用户postgres的密码
sudo -u postgres passwd
后续按照系统提示输入新的密码
之后连续enter
问题解决:
https://blog.csdn.net/international24/article/details/89710703
