mysql遠端無法連線,報 1130錯的解決辦法

2021-06-16 04:50:13 字數 718 閱讀 3818

如果你想連線你的mysql的時候發生這個錯誤:

error 1130: host '192.168.1.3' is not allowed to connect to this mysql server

解決方法:

1。 改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"

mysql -u root -pvmware

mysql>use mysql;

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

mysql>select host, user from user;

2. 授權法。例如,你想sina使用123456從任何主機連線到mysql伺服器的話。

grant all privileges on *.* to sina@'%' identified by '123456' with grant option;

如果你想允許使用者sina從ip為192.168.1.3的主機連線到mysql伺服器,並使用123456作為密碼

grant all privileges on *.* to 'sina'@'192.168.1.3' identified by '123456' with grant option;

關於mysql資料發生遠端連線報出1130的錯誤

error 1130 ip 位址 is not allowed to connect to this mysql server 這個是遠端伺服器沒有給與使用者連線的許可權 解決方式 1.伺服器登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱...

mysql遠端連線報1130

原因 遠端連線沒有許可權 解決方法 設定ip許可權 1 使用本地連線mysql mysql u root p 2 使用mysql庫 mysql use mysql 3 查詢root使用者的host mysql select host from user where user root 4 更新roo...

遠端連線報錯

遠端登入卻報錯host is not allowed to connect to this mysql server 解決方法 在裝有mysql的機器上登入mysql mysql u root p密碼 執行use mysql 執行update user set host where user roo...