CentOS 安装 PostgreSQL

修改默认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)