默认账户postgres,默认数据库postgres,存储数据库的基础信息,其中会初始化超级用户postgres。
// 切换到postgres用户
su postgres
// 切换SQL模式
psql
// 修改密码
alter user postgres with password 'postgres123';
// 创建test用户
create user test with password 'test';
// 授权
grant all privileges on database mydb to test;
// 退出
\q