8.0mysql远程
8.0mysql
修改密码
mysql -uroot -p
use mysql;
ALTER USER ‘root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘123456’;
配置远程:
mysql -uroot -p
use mysql;
//Mysql默认不允许远程登录,所以需要开启远程访问权限
select user,authentication_string,host from user;
update user set h
原创
2020-05-11 15:42:54 ·
112 阅读 ·
0 评论