mysql 遠程鏈接出錯問題

當安裝好mysql後,想經過遠程鏈接,出現ERROR 1130 (HY000): Host '***' is not allowed to connect to this MySQL server的解決辦法。mysql

  1. 經過本地鏈接進入mysql:在cmd下輸入mysql -h localhost -uroot -p******
  2. 執行"use mysql;",回車;
  3. 執行"update mysql.user set Host='%' where Host = 'localhost';"
  4. 執行"grant all privileges on *.* to root@"%";"
  5. 執行"flush privileges;",大功告成。
相關文章
相關標籤/搜索