SQL_server 数据库安全设计
相关知识:
1、创建用户:
(1)创建名为user1的用户,密码为user1coder,只能在localhost登录。
CREATE USER ‘user1‘@‘localhost‘ IDENTIFIED BY ‘user1coder‘;
(2)创建名为user2,密码为123的用户,可以通过任何ip连接数据库。
create user ‘user2‘@‘%‘ identified by ‘123‘
(3)删除用户
DROP USER ‘user1‘@‘localhost‘;
(4)查看用户
select user,host from mysql.user;
2、权限管理
- all 所有权限(不包括授权权限)
- Delete权限代表允许删除行数据的权限
- Insert权限代表是否允许在表里插入数据
- Select权限代表允许从表中查看数据,某些不查询表数据的select执行则不需要此权限,如Select 1+1, Select PI()+2;而且select权限在执行update/delete语句中含有where条件的情况下也是需要的
- Update权限代表允许修改表中的数据的权限
- Usage权限是创建一个用户之后的默认权限,其本身代表连接登录权限
(1)查看权限
show grants for ‘user1‘@‘localhost‘ ;
(2)收回权限
- revoke 权限列表 on 对象列表 from 用户列表
- revoke all on mydb.* from ‘user1‘@‘localhost‘; //回收所有权限
- revoke select,delete on *.* from ‘user1‘@‘%‘; //回收部分权限
3、库名.表名
- *.* 所有数据库下的所有表
- 数据库.* 指定数据库下的所有表
- 数据库名称.表名称 指定数据库的指定表
- select(col1名称),insert(col1名称,col2名称) on mydb.mytable 只能对mydb.mytable第一列有读权限,第一第二列有插入权限
任务描述:
注:grant命令执行后如果数据库中没有对应的角色会自动创建(授权命令)
(1)数据库维护人员(1人):可对订单数据库进行任何操作。
账号名称:system_dbowner,允许任何ip通过此用户连接数据库,密码为usercode1
grant all on 订单数据库.* to ‘system_dbowner‘@‘%‘ identified by ‘usercode1‘;
(2)数据录入人员(2人):可对订单数据库中所有表进行插入、删除、更新操作,不能创建与修改表结构及其它授权等操作。
账号名称:datarecorder1, datarecorder2,允许任何ip通过此用户连接数据库,密码为usercode1
grant insert,delete,update,select on 订单数据库.* to ‘datarecorder1‘@‘%‘ identified by ‘usercode1‘; grant insert,delete,update,select on 订单数据库.* to ‘datarecorder2‘@‘%‘ identified by ‘usercode1‘;
(3)订单管理人员(2人):能对订单数据库中的订单表和项目表进行插入、删除、更新操作,其它表仅能查询。不能创建与修改表结构及其它授权等操作。
账号名称:order_1,order_2,允许任何ip通过此用户连接数据库,密码为usercode1
grant select on 订单数据库.* to ‘order_1‘@‘%‘ identified by ‘usercode1‘;--授予查询所有表格的权限 grant insert,delete,update on 订单数据库.订单 to ‘order_1‘@‘%‘ identified by ‘usercode1‘; grant insert,delete,update on 订单数据库.订货项目 to ‘order_1‘@‘%‘ identified by ‘usercode1‘; grant select on 订单数据库.* to ‘order_2‘@‘%‘ identified by ‘usercode2‘;--授予查询所有表格的权限 grant insert,delete,update on 订单数据库.订单 to ‘order_2‘@‘%‘ identified by ‘usercode1‘; grant insert,delete,update on 订单数据库.订货项目 to ‘order_2‘@‘%‘ identified by ‘usercode1‘;
(4)客户管理人员(2人):能对订单数据库中的代理商表和客户表进行插入、删除、更新,其它表仅能查询。不能创建与修改表结构及其它授权等操作。
账号名称:customer_1, customer_2,允许任何ip通过此用户连接数据库,密码为usercode1
grant select on 订单数据库.* to ‘customer_1‘@‘%‘ identified by ‘usercode1‘;--授予查询所有表格的权限 grant insert,delete,update on 订单数据库.代理商 to ‘customer_1‘@‘%‘ identified by ‘usercode1‘; grant insert,delete,update on 订单数据库.客户 to ‘customer_1‘@‘%‘ identified by ‘usercode1‘; grant select on 订单数据库.* to ‘customer_2‘@‘%‘ identified by ‘usercode1‘;--授予查询所有表格的权限 grant insert,delete,update on 订单数据库.客户 to ‘customer_2‘@‘%‘ identified by ‘usercode1‘; grant insert,delete,update on 订单数据库.代理商 to ‘customer_2‘@‘%‘ identified by ‘usercode1‘;
相关推荐
一对儿程序猿 2020-07-04
Bellboy 2020-06-28
lysanderK 2020-04-19
jiong 2020-03-08
韩学敏 2020-01-02
runming 2019-11-17
dugujiujian 2019-08-04
nameszd 2019-05-22
lglovejava 2017-05-22
zry 2011-07-02
zry 2010-02-05
不懂 2019-07-02
繁殇落幕 2019-06-30
agjirowjtg 2014-04-03
dilipy 2013-05-30
helencoder 2011-03-05
usstlidawei 2008-08-10
AngleKill 2008-10-07