postgresql 添加用户和修改密码

前端之家收集整理的这篇文章主要介绍了postgresql 添加用户和修改密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

步骤一:登录Postgresql

1
sudo -u postgres psql

步骤二:修改登录Postgresql密码

ALTER USER postgres WITH PASSWORD 'postgres' ;

创建用户一:


create user ysr superuser password '123456';


创建用户二:

创建用户:createuserusernamewithloginpassword'password';

  1. grantallonalltablesinschemaschemaNametouser;给用户某个schema的所有权限

原文链接:https://www.f2er.com/postgresql/193207.html

猜你在找的Postgre SQL相关文章