1. 程式人生 > >Host "xxx.xxx.xxx.xxx" is not allowes to connect to this MySQL severe.

Host "xxx.xxx.xxx.xxx" is not allowes to connect to this MySQL severe.

原因:

這裡的 xxx.xxx.xxx.xxx 是你自己電腦的IP地址,出現這個錯誤的原因是你的伺服器中的資料庫之允許本地訪問,即從資料庫訪問,外部連線是訪問不到的。

解決方法:

修改MySQL資料庫中的 user表格,將host的“localhost”修改為“%”,然後重啟MySQL服務。
可以通過程式碼修改

update user set host='%' where user='root';

也可以使用視覺化工具進行修改
在這裡插入圖片描述