修改 PostgreSQL 数据库默认密码
2017-12-21 tech postgresql 1 mins 159 字
-
登录PostgreSQL
sudo -u postgres psql
-
修改登录PostgreSQL密码
ALTER USER postgres WITH PASSWORD 'postgres';
注意:
- 密码postgres要用引号引起来
- 命令最后有分号
登录PostgreSQL
sudo -u postgres psql
修改登录PostgreSQL密码
ALTER USER postgres WITH PASSWORD 'postgres';
注意: