美文网首页
CentOS 安装 PostgreSQL

CentOS 安装 PostgreSQL

作者: chjxidian | 来源:发表于2019-09-29 10:49 被阅读0次

修改默认PostgreSQL用户密码

PostgreSQL安装后会创建一个用户,名为postgres。 

输入su - postgres并回车,切换至用户。 

输入psql -U postgres并回车,登录数据库。 

ALTER USER postgres with encrypted password 'misrobot';

CREATE USER chj WITH PASSWORD '123456';

psql -U postgres -h localhost -W

pg_ctl reload

相关文章

网友评论

      本文标题:CentOS 安装 PostgreSQL

      本文链接:https://www.haomeiwen.com/subject/ultjyctx.html