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;
文章来源:https://www.toymoban.com/news/detail-734033.html
部分引用:mysql8.0远程登录授权_MySQL8.0远程连接和用户授权相关设置文章来源地址https://www.toymoban.com/news/detail-734033.html
到了这里,关于MySql 8.0 设置允许远程登录授权的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!