当安装好mysql后,想经过远程链接,出现ERROR 1130 (HY000): Host '***' is not allowed to connect to this MySQL server的解决办法。mysql
- 经过本地链接进入mysql:在cmd下输入mysql -h localhost -uroot -p******
- 执行"use mysql;",回车;
- 执行"update mysql.user set Host='%' where Host = 'localhost';"
- 执行"grant all privileges on *.* to root@"%";"
- 执行"flush privileges;",大功告成。