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';