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 table | gbase> 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 table | gbase> 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 table | gbase> 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 table | gbase> 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 view | gbase> 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 view | gbase> show create view name; |
| index | 必须拥有index权限,才能执行[create |drop] index | gbase> grant index on pyt.* to root@localhost; gbase> create index ix_shop on shop(article); gbase> drop index ix_shop on shop; |
| execute | 执行存在的Functions,Procedures | gbase> call pro_shoroot(0001,@a); |
| event | event的使用频率较低建议使用root用户进行创建和维护。 要使event起作用,Gbase的常量GLOBAL event_scheduler必须为on或者是1 | gbase> show global variables like 'event_scheduler'; |
| lock tables | 必须拥有lock tables权限,才可以使用lock tables | gbase> 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,这点需要注意
热门帖子
- 12025-12-01浏览数:182759
- 22023-05-09浏览数:25051
- 42023-09-25浏览数:18521
- 52020-05-11浏览数:17526