本文主要是介绍mysql 远程不允许连接 1130 -Host ‘‘ is not allowed to connect to this MySQL server,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、docker 进入mysql 命令
sudo docker exec -it 0c58 /bin/bash
2、连接mysql
mysql -u root -ppwd
3、 use mysql;
4、更改表所有root用户都可以连接
update user set host =‘%’ where user=‘root’;
5、刷新权限
flush privilege;
ok解决;
这篇关于mysql 远程不允许连接 1130 -Host ‘‘ is not allowed to connect to this MySQL server的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!