标签:撤销 处理 inf schema 并且 sch 数据库名 cloud 用户名
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 ‘j0!uN@Da12tA&*ba3S&l‘;
flush privileges;
grant select,insert,update,delete on information_schema.* to rcd@‘%‘;
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 ‘1iN@Da12tA&*ba33gy2‘;
grant select,insert,update,delete on dianshang_db.* to ‘dianshang_db‘@‘%‘ identified by ‘1iN@Da12tA&*ba33gf8‘;
create user ‘ddbes-open‘@‘%‘ identified by ‘1iN@Da12tA&*ba33gqo‘;
然后用navicat授权
4、给用户授予所以权限
4.1 授予用户所有数据库所有权限
grant all privileges on *.* to ‘linshi‘@‘%‘ identified by ‘zihao@5tgb‘;
flush privileges;
4.2 授予用户某一个数据库所有权限
grant all privileges on codeddbes.* to ‘linshi‘@‘%‘ identified by ‘zihao@5tgb‘;
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 dba@localhost;
标签:撤销 处理 inf schema 并且 sch 数据库名 cloud 用户名
原文地址:https://www.cnblogs.com/effortsing/p/10011265.html