具体步骤
1、连接服务器: mysql -u root -p
2、查看当前所有数据库:show databases;
3、进入mysql数据库:use mysql;
4、查看mysql数据库中所有的表:show tables;
5、查看user表中的数据:select Host, User,Password from user;
6、修改user表中的Host:update user set Host=‘%’ where User=‘root’;
PS:如果出现报错,忽略即可:ERROR 1130: Host ‘192.168.10.173’ is not allowed to connect to this MySQL ERROR 1062 (23000): Duplicate entry ‘%-root’ for key ‘PRIMARY’ 忽略即可文章来源:https://www.toymoban.com/news/detail-608509.html
7、最后刷新一下即可:flush privileges;
文章来源地址https://www.toymoban.com/news/detail-608509.html
到了这里,关于Mysql报错:1130-host ... is not allowed to connect to this MySql server如何处理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!