MySQL 无法连接

Host 'localhost' is not allowed to connect to this MySQL server 错误

解决办法:

C:\Program Files\MySQL\MySQL Server 5.5\my.ini

在[mysqld]下加下面两行,

skip-name-resolve
skip-grant-tables

 

重启mysql的windows服务,在mysql命令行界面输入

grant all on *.* to ‘root’@’%’ identified by ‘123’ with grant option;

flush privileges;

 

posted @ 2014-01-23 18:01  shuaixf  阅读(194)  评论(0编辑  收藏  举报