1.安装
https://www.runoob.com/mysql/mysql-install.html
2.授权
在linux登录mysql,输入下面的命令:
create user 'root'@'%' identified by '6993258';
grant all on *.* to 'root'@'%';
flush privileges;
2022-11-11 20:48:40
1.安装
https://www.runoob.com/mysql/mysql-install.html
2.授权
在linux登录mysql,输入下面的命令:
create user 'root'@'%' identified by '6993258';
grant all on *.* to 'root'@'%';
flush privileges;