为了账号安全,请及时绑定邮箱和手机立即绑定

【九月打卡】第17天 MySQL8.0 账户安全

标签:
MySQL

第一板块:玩转MySQL8.0新特性,1-1;2-1;2-2;2-3;2-4,董旭阳

第二,三板块:

  1. 账户安全

    用户创建和授权;

    认证插件更新:MySql8.0中默认的身份认证插件是caching_sha2_password,代替了之前的mysql_native_password.

    密码管理:开始允许限制重复使用以前的代码。

    password_history=3;password_reuse_interval=90;password_require_current=ON;

    角色管理:提供了角色管理的新功能,觉得是一组权限的集合。

// 查询默认安装的用户
select user,host from mysql.user;
// 创建新用户并设置密码
grant all privileges on *.* to 'tony'@'%' identified by 'Tony@1029';
// 设置提示符
prompt mysql157 >
// (新)创建新用户并设置密码
create user 'tony'@'%' identified by 'Tony@1029';
// 授权语句
grant all privileges on *.* to 'tony'@'%'
// 密码变量
show variables like 'password%'
// 全局修改环境变量(不需要重启服务器,当前就可以生效)
set persist password_history=10;
// 数据库中创建一张表
create database testdb;
// 数据库中创建一张表(id整型)
create database testdb(id int);
// 创建角色
create role 'write_role'
// 查询
select host,user,authentication_string from mysql.user
// 角色赋予权限
grant insert,update,delete on testdb.* to 'write_role';
grant select on testdb.*to 'write_role';



第四板块:

https://img1.sycdn.imooc.com/632c65fa0001d3fd18960761.jpg

https://img1.sycdn.imooc.com/632c6c030001dd4618930771.jpg


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消