1、查询当前所有用户的host 等信息
select host, user, authentication_string, plugin from user;
2、 修改
update user set host='%' where user='root';
3、 刷新策略
flush privileges;
4、 更改加密方式,改为:mysql_native_password文章来源:https://www.toymoban.com/news/detail-854155.html
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
5、 刷新策略文章来源地址https://www.toymoban.com/news/detail-854155.html
到了这里,关于mysql 开启外网ip访问的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!