添加新用户和新数据库
方式方法很多,这里介绍一种个人常用的。
新建一个Linux新用户,这里为yyds(会提示设置密码(密码还是要设置的啦),其他默认就好(直接回车,最后输入y,然后回车就搞定啦!))。
sudo adduser yyds
为postgres用户设置密码。
sudo passwd postgres
切换到postgres用户。
su postgres
使用psql命令登录PostgreSQL。
安装PostgreSQL成功后,会默认生成一个postgres的用户+名称为postgres的数据库+名称为postgres的数据库用户名
psql
为postgres用户(数据库)设置一个密码(如果还没有设置)。
\password postgres
为用户yyds创建数据库用户。
create user yyds with password 'yyds';
为用户yyds创建同名数据库yyds。
create database yyds owner yyds;
将yyds数据库的所有权限都赋予yyds。
grant all privileges on database yyds to yyds;
退出数据库。
\q
切换到yyds用户。
su yyds
登录数据库(同名Ubuntu用户>数据库用户>数据库名称可以这么用…)。
psql