psql: FATAL: role “appleyuchi” does not exist与修改默认密码

$ psql

报错如下:

psql: FATAL: role “appleyuchi” does not exist

使用:

sudo -s -u postgres

就会把当前用户切换成postgres

postgres=# ALTER USER postgres WITH PASSWORD 'postgres';

上面这句话的意思是,

给postgres这个账户的密码设置为postgres

发布了758 篇原创文章 · 获赞 343 · 访问量 162万+

猜你喜欢

转载自blog.csdn.net/appleyuchi/article/details/104736414