1. 程式人生 > >MySql資料庫:Host 'localhost' is not allowed to connect to this MySQL server

MySql資料庫:Host 'localhost' is not allowed to connect to this MySQL server

最近在IDEA中開發Web專案時,連線MYSQL資料庫,出現問題:Access denied for user 'root'@'localhost'(using password:YES)。

 網上查詢後發現需要修改MySQL的密碼。

 修改MYSQL的root密碼後,出現Host 'localhost' is not allowed to connect to this MySQL server 錯誤。

解決辦法:

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

在最後新增兩行,

skip-name-resolve
skip-grant-tables

重啟MySQL服務即可。