连接失败!null, message from server: “Host ‘xxxx‘ is not allowed to connect to this MySQL server“

连接数据库,这里以默认用户名密码为例
mysql -uroot -proot
show databases;
use mysql ;
select user,host from user;//可以看到user为root,host为localhost的话,说明mysql只允许本机连接,那么外网,本地软件客户端就无法连接了。
update user set host = ‘%’ where user=‘root’;
flush privileges;//刷新权限

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/174366.html

(0)
上一篇 2021年9月30日 15:23
下一篇 2021年9月30日

相关推荐

发表回复

登录后才能评论