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;
?