目录

install mysql on linux


install mysql on linux

安装:

sudo apt update
sudo apt install mysql-server

配置root密码为123456:

sudo mysql
use mysql;
update user set authentication_string='' where user='root';
alter user 'root'@'localhost' identified with mysql_native_password by '123456';

参考文献:

Ubunto20.04安装MySQL并修改root用户密码

如何在 Ubuntu 20.04 上安装 MySQL