1. 安装mysql
https://www.jianshu.com/p/ce53320dcfbd
2. 获取mysql 5.7随机生成的密码
https://www.yanning.wang/archives/379.html
使用 grep "temporary password" /var/log/mysqld.log
获取mysql的初始化密码。
3. 在使用数据库之前需要初始化密码,否则无法使用
重新设置密码set password = password('你的密码');
密码需要使用大小写,符号和数字,否则会提示1819 (HY000): Your password does not satisfy the current policy requirements
网友评论