MySQL各版本的区别
https://yq.aliyun.com/articles/607474
http://blog.sina.com.cn/s/blog_62b37bfe0101he5t.html
MySQL版本时间线
https://www.cc1021.com/article/134.html
关于MySQL对数据库用户密码的加密方式
MySQL - ERROR 2059: Authentication plugin 'caching_sha2_password'
https://my.oschina.net/johnsken/blog/1840348
############################################
> show variables like 'default_authentication_plugin';
> select host,user,plugin from mysql.user;

> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'MySQL@123';
> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'MySQL@123';
> flush pr

本文探讨了MySQL的不同版本之间的区别,重点关注了版本时间线、用户密码加密方式的变化,如从`caching_sha2_password`到`mysql_native_password`的转换。同时,介绍了MySQL8.0.11在Linux7.2上的二进制安装过程,以及MySQL高可用性的实现,如PXC集群。此外,还涉及了MySQL主从复制、读写分离和5.7版本新的权限与安全改进。
最低0.47元/天 解锁文章
2674





