继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

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

saluteY
关注TA
已关注
手记 42
粉丝 0
获赞 0

第一板块:玩转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';



第四板块:

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

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


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP