GBase 8a
运维管理
文章

GBase 8a 用户赋权使用说明

发表于2025-01-11 21:58:44349次浏览1个评论
权限说明举例
usage连接(登陆)权限,建立一个用户,就会自动授予其usage权限(默认授予)。
该权限只能用于数据库登陆,不能执行任何操作;且usage权限不能被回收,也即REVOKE用户并不能删除用户。
gbase>  grant usage on *.* to 'root′@'localhost' identified by '123';
file拥有file权限才可以执行  select ..into outfile和load data infile…操作,但是不要把file, process,  super权限授予管理员以外的账号,这样存在严重的安全隐患。gbase>  grant file on *.* to root@localhost;
   gbase> load data infile '/home/gbase/pet.txt' into table pet;
super这个权限允许用户终止任何查询;修改全局变量的SET语句;使用CHANGE  MASTER,PURGE MASTER LOGS。gbase>  grant super on *.* to root@localhost;
   gbase> purge master logs before 'gbase-bin.000006′;
select必须有select的权限,才可以使用select  tablegbase>  grant select on pyt.* to 'root′@'localhost';
   gbase> select * from shop;
insert必须有insert的权限,才可以使用insert  into ….. values….gbase>  grant insert on pyt.* to 'root′@'localhost';
   gbase> insert into shop(name) values('aa');
update必须有update的权限,才可以使用update  tablegbase>  update shop set price=3.5 where article=0001 and dealer='A';
delete必须有delete的权限,才可以使用delete  from ….where….(删除表中的记录)gbase>  grant delete on pyt.* to 'root′@'localhost';
   gbase> delete from table where id=1;
alter必须有alter的权限,才可以使用alter  tablegbase>  alter table shop modify dealer char(15);
alter routine必须具有alter  routine的权限,才可以使用{alter |drop} {procedure|function}gbase>grant  alter routine on pyt.* to 'root′@' localhost ‘;
   gbase> drop procedure pro_shop;
   Query OK, 0 rows affected (0.00 sec)
create必须有create的权限,才可以使用create  tablegbase>  grant create on pyt.* to 'root′@'localhost';
drop必须有drop的权限,才可以删除库、表、索引、视图等gbase>  drop database db_name; 
   gbase> drop table tab_name;
   gbase> drop view vi_name; 
   gbase> drop index in_name;
create routine必须具有create  routine的权限,才可以使用{create |alter|drop} {procedure|function}gbase>  grant create routine on pyt.* to 'root′@'localhost';
   当授予create routine时,自动授予EXECUTE, ALTER ROUTINE权限给它的创建者:
create temporary tables(注意这里是tables,不是table)必须有create  temporary tables的权限,才可以使用create temporary tables.
   gbase> grant create temporary tables on pyt.* to  'root′@'localhost';
   [gbase@mydev ~]$ gbase -h localhost -u root -p pyt
   gbase> create temporary table tt1(id int);
create view必须有create  view的权限,才可以使用create viewgbase>  grant create view on pyt.* to 'root′@'localhost';
   gbase> create view v_shop as select price from shop;
create user要使用CREATE  USER,必须拥有gbase数据库的全局CREATE USER权限,或拥有INSERT权限。gbase>  grant create user on *.* to 'root′@'localhost';
   或:gbase> grant insert on *.* to root@localhost;
show database通过show  database只能看到你拥有的某些权限的数据库,除非你拥有全局SHOW DATABASES权限。
对于root@localhost用户来说,没有对gbase数据库的权限,所以以此身份登陆查询时,无法看到gbase数据库:
gbase>  show databases;
show view必须拥有show  view权限,才能执行show create viewgbase>  show create view name;
index必须拥有index权限,才能执行[create  |drop] indexgbase>  grant index on pyt.* to root@localhost;
   gbase> create index ix_shop on shop(article);
   gbase> drop index ix_shop on shop;
execute执行存在的Functions,Proceduresgbase>  call pro_shoroot(0001,@a);
eventevent的使用频率较低建议使用root用户进行创建和维护。
要使event起作用,Gbase的常量GLOBAL event_scheduler必须为on或者是1
gbase>  show global variables like 'event_scheduler';
lock tables必须拥有lock  tables权限,才可以使用lock tablesgbase>  grant lock tables on pyt.* to root@localhost;
   gbase> lock tables a1 read;
   gbase> unlock tables;
references有了REFERENCES权限,用户就可以将其它表的一个字段作为某一个表的外键约束。 
reload必须拥有reload权限,才可以执行flush  [tables | logs | privileges]gbase>  grant reload on pyt.* to root@localhost;
   ERROR 1221 (HY000): Incorrect usage of DB GRANT and GLOBAL PRIVILEGES
   gbase> grant reload on *.* to 'root′@'localhost';
   Query OK, 0 rows affected (0.00 sec)
   gbase> flush tables;
grant option拥有grant  option,就可以将自己拥有的权限授予其他用户(仅限于自己已经拥有的权限)gbase>  grant Grant option on pyt.* to root@localhost;
   gbase> grant select on pyt.* to p2@localhost;
process通过这个权限,用户可以执行SHOW  PROCESSLIST和KILL命令。默认情况下,每个用户都可以执行SHOW PROCESSLIST命令,但是只能查询本用户的进程。gbase>  show processlist;
all privileges所有权限。with  grant option 可以连带授权gbase>  grant all privileges on pyt.* to root@localhost with grant option;

另外:
管理权限(如 super, process, file等)不能够指定某个数据库,on后面必须跟 *.*
truncate权限就是create+drop,这点需要注意

评论

登录后才可以发表评论
用户头像
levvel发表于 5个月前
干货满满!