MySQL 连接出现 is not allowed to connect to this MySQL Server错误提示
打开 MySQL8.0 Command Line Client
1. 打开远程连接
mysql> use mysql;
mysql> update user set user.Host=’%’ where user.User=‘root’;
mysql> flush privileges;
mysql> select host,user from user;
注:将Host设置为‘%’表示任意IP都能连接MySQL,也可以将‘%’改为指定ip
2. 关闭远程连接
如果有关闭远程连接的需求,其实我们只需要Host恢复成默认设置(只能本地连接)即可,如下:
mysql> use mysql;
mysql> update user set user.Host=‘localhost’ where user.User=‘root’;
mysql> flush privileges;
mysql> select host,user from user;
————————————————
版权声明:本文为CSDN博主「loriloy」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yi_zongjishi/article/details/129815465