MySQL各版本的區(qū)別
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 privileges;
############################################
MySQL8.0.11 for Linux7.2 二進制安裝
http://blog.51cto.com/fengfeng688/2141752
MySQL高可用——PXC簡介
http://blog.51cto.com/fengfeng688/2151059
PXC5.7.21 for Linux7.2安裝
http://blog.51cto.com/fengfeng688/2151070
MySQL主從復制與讀寫分離
http://blog.51cto.com/13871362/2331275?source=drh
詳解 MySQL 5.7 新的權限與安全問題
https://my.oschina.net/leejun2005/blog/678202