Mysql8.0.20 创建用户并授权
程序员文章站
2023-03-08 09:18:54
Mysql8.0.20 创建用户并授权创建用户-- mysql的用户表在 mysql.user 表中use mysql;-- username:用户名称-- %:是通配符指的是任意IP,这个位置也可以指定特定的ip,或者localhost代表本机才可以登录create user 'username'@'localhost' identified by 'password';create user 'username'@'%' identified by 'password'; -- 查看...
Mysql8.0.20 创建用户并授权
创建用户
-- mysql的用户表在 mysql.user 表中
use mysql;
-- username:用户名称
-- %:是通配符指的是任意IP,这个位置也可以指定特定的ip,或者localhost代表本机才可以登录
create user 'username'@'localhost' identified by 'password';
create user 'username'@'%' identified by 'password';
-- 查看新创建的用户
select * from user where user = 'username';
-- 查看权限
show grants for 'username'@'localhost';
授权
- 超级用户权限
-- grant:授权
-- all privileges:所有的权限
-- on *.*:在哪个数据库的那个表
-- to username@localhost:对哪个用户的哪个主机
-- with grant option:是不是将username用户自己本身的权限赋给其他账户
grant all privileges on *.* to 'username'@'localhost' with grant option;
-- 立即生效
flush privileges;
- 普通用户权限
-- usage:无权限,当你想创建一个没有权限的用户时候,指定usage
-- show:查看的权限,赋权限报错了,我也不知道咋回事
-- view:视图的权限(mysql8.0+赋权限出错)ERROR 3619 (HY000): Illegal privilege level specified for VIEW,如下图所示。
-- create temporary tables:创建临时表的权限
-- excute:执行的权限
grant usage,select,insert,update,delete,create temporary tables,execute on *.* to username@localhost;
Linux下安装Mysql8.0.20
https://blog.csdn.net/qq_37040886/article/details/107298679
本文地址:https://blog.csdn.net/qq_37040886/article/details/107300838
上一篇: 02 数据库 索引 sql调优 锁 事务