ubuntu20.04安装mysql 8.0并修改root密码1、sudo apt update, sudo apt upgrade2、sudo apt install mysql-server3、修改密码:ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'very_strong_password';FLUSH PRIVILEGES;