mysl创建用户+授权+增删改查

Posted effortsing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysl创建用户+授权+增删改查相关的知识,希望对你有一定的参考价值。

1、mysql的root用户无法给普通用户授权问题处理

update mysql.user set Grant_priv=‘Y‘ where User=‘root‘ and Host=‘%‘;

flush privileges;(刷新权限)

 

 2、mysql创建用户并且授权

不需要单独创建用户、单独授权执行下面命令,没有用户,会自动创建用户。

grant select,insert,update,delete on dec_db.* to ‘dec-user‘@‘%‘ identified by ‘[email protected]&*ba3S&l‘;

flush privileges;

 

grant select,insert,update,delete on information_schema.* to [email protected]‘%‘;

flush privileges;

 

grant all privileges on codeddbes.* to ‘codeddbes‘@‘%‘ identified by ‘d9ff2e44dd0dce38074bcccb8f6feb93‘;

flush privileges;

 

3、创建用户后用navicat授权

grant select,insert,update,delete on cloud.* to ‘rcd‘@‘%‘ identified by ‘[email protected]&*ba33gy2‘;
grant select,insert,update,delete on dianshang_db.* to ‘dianshang_db‘@‘%‘ identified by ‘[email protected]&*ba33gf8‘;

create user ‘ddbes-open‘@‘%‘ identified by ‘[email protected]&*ba33gqo‘;
然后用navicat授权

 

4、给用户授予所以权限

4.1 授予用户所有数据库所有权限

grant all privileges on *.* to ‘linshi‘@‘%‘ identified by ‘[email protected]‘;
flush privileges;

 

4.2 授予用户某一个数据库所有权限

grant all privileges on codeddbes.* to ‘linshi‘@‘%‘ identified by ‘[email protected]‘;
flush privileges;

 

4.3  授予用户某一个数据库的某一个表的所有权限

grant all privileges on 库名.表名 to ‘用户名‘@‘IP地址‘ identified by ‘密码‘ with grant option;
flush privileges;


库名:要远程访问的数据库名称,所有的数据库使用“*”
表名:要远程访问的数据库下的表的名称,所有的表使用“*”
用户名:要赋给远程访问权限的用户名称
IP地址:可以远程访问的电脑的IP地址,所有的地址使用“%”
密码:要赋给远程访问权限的用户对应使用的密码

 

5、撤销mysql用户权限

revoke all on *.* from [email protected];

 













以上是关于mysl创建用户+授权+增删改查的主要内容,如果未能解决你的问题,请参考以下文章

库表的增删改查

django配置模型增删改查

MySQL基本操作--库表增删改查

oracle如何授权当前用户只能增删改查当前用户的表

MySQL-增删改查简易操作

MySQL-增删改查简易操作