安装 MySQL 5.7
sudo apt update sudo apt install mysql-server-5.7
查看mysql默认密码
cat /etc/mysql/debian.cnf
连接MySQL
首次进入需要设置密码 mysql -uroot -p
修改root默认密码
show databases;
use mysql;
update user set authentication_string=PASSWORD("输入你想设置的密码") where user='root';
update user set plugin="