GBase 8a
安装配置
文章
GVR同步工具使用用户权限
发表于2024-02-27 10:11:35100次浏览1个评论
在使用GVR同步工具进行主备集群数据同步时,如果用新创建的数据库普通用户进行同步,需要给主备集群上该用户赋相应的权限,最小数据库权限如下:
grant select on gbase.table_distribution to 用户;
grant lock tables on 库名.* to 用户;
grant select,create,drop on 库名.* to 用户;
grant select on gbase.proc to 用户;
grant create routine on 库名.* to 用户; -- create 存过权限
grant alter routine on 库名.* to 用户; -- drop 存过权限
grant super on *.* to 用户;
grant file on *.* to 用户;
grant select,create,drop,insert on gclusterdb.* to 用户;
热门帖子
- 12025-12-01浏览数:182759
- 22023-05-09浏览数:25052
- 42023-09-25浏览数:18521
- 52020-05-11浏览数:17526