mysql用户怎么授权 在mysql中授权使用什么命令

如何给mysql用户分配权限1,Mysql下创建新的用户
语法:
1.create user 用户名 identified by '密码';
例:create user xiaogang identified by '123456';
新创建的用户,默认情况下是没有任何权限的 。
2. 如何给用户分配权限
语法:
1.grant 权限 on 数据库.数据表 to '用户' @ '主机名';
例:给 xiaogang 分配所有的权限
grant all on *.* to 'xiaogang'@'%';
这个时候 xiaogang 就拥有了 所有权限了
3 如何更精准的控制用户的权限呢?
1.grant 权限 on 数据库.数据表 to '用户' @ '主机名';
例:让 xiaogang 有查询 tmp 数据库 tmp1 表的权限;
grant select on temp.temp1 to 'xiaogang'@'%';//这个时候 xiaogang 就具有查询temp小的temp1的权限了 。
mysql 8.0 创建新的数据库、用户并授权 , 以及相关查看并删除操作 以创建wordpress网站的数据库为例
1、创建数据库
创建可指定字符 , 或者不指定字符,如果不指定字符,默认为utf8mb4和utf8mb4_0900_ai_ci
2、创建用户
可自行指定用户可访问的IP地址范围 。
3、授权用户
4、直接一步到位
或者 这种方法 :创建并授权用户,是二和三的合并 。
1、查看数据库
show databases可查询所有存在的数据库
2、查看用户信息
用户信息在系统数据库mysql中的user表中 。密码查询不会显示明文密码,而是显示为加密后的密文 。
3、查看用户权限
有两种方式查看 。
第一种方式 : show grants for 'userwordpress';
第二种方式:select * from mysql.user where user='userwordpress'G;
g 相当于’;’
G使每个字段打印到单独的行 , 也有 ’;' 的作用
只能查出哪个数据库的哪张表的权限,如查userwordpress在mysql数据库的user表的权限,显示都是N(no),没有权限 , 如果查root用户就都是Y(yes)选择了 。
用drop而非delete,简单的区分就是 , drop是删除【表】,truncate与delete则是删除表中【记录】 。
删除用户
同理,删除数据库
用drop删除时 , 会有确认信息,为了防止误删 。(删库跑路,请谨慎操作)
如何设置mysql用户的权限1、创建新用户
通过root用户登录之后创建
grant all privileges on *.* to testuser@localhost identified by "123456" ;//创建新用户,用户名为testuser,密码为123456 ;
grant all privileges on *.* to testuser@localhost identified by "123456" ;//设置用户testuser,可以在本地访问mysql
grant all privileges on *.* to testuser@"%" identified by "123456" ; //设置用户testuser,可以在远程访问mysql
flush privileges ;//mysql 新设置用户或更改密码后需用flush privileges刷新MySQL的系统权限相关表,否则会出现拒绝访问,还有一种方法,就是重新启动mysql服务器 , 来使新设置生效
2、设置用户访问数据库权限
grant all privileges on test_db.* to testuser@localhost identified by "123456" ;//设置用户testuser,只能访问数据库test_db,其他数据库均不能访问 ;
grant all privileges on *.* to testuser@localhost identified by "123456" ;//设置用户testuser,可以访问mysql上的所有数据库 ;
grant all privileges on test_db.user_infor to testuser@localhost identified by "123456" ;//设置用户testuser,只能访问数据库test_db的表user_infor , 数据库中的其他表均不能访问 ;
3、设置用户操作权限
grant all privileges on *.* to testuser@localhost identified by "123456" WITH GRANT OPTION ;//设置用户testuser,拥有所有的操作权限,也就是管理员 ;
grant select on *.* to testuser@localhost identified by "123456" WITH GRANT OPTION ;//设置用户testuser,只拥有【查询】操作权限 ;
grant select,insert on *.* to testuser@localhost identified by "123456";//设置用户testuser , 只拥有【查询\插入】操作权限 ;
grant select,insert,update,delete on *.* to testuser@localhost identified by "123456";//设置用户testuser,只拥有【查询\插入】操作权限 ;
REVOKE select,insert ON what FROM testuser//取消用户testuser的【查询\插入】操作权限 ;
【mysql用户怎么授权 在mysql中授权使用什么命令】关于mysql用户怎么授权和在mysql中授权使用什么命令的介绍到此就结束了 , 不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读