mysql遠端連線錯誤

2021-08-07 14:43:10 字數 465 閱讀 9748

關於mysql 遠端連線的錯誤有三種情況需要來考慮

1.是否能ping的通

2.確定root使用者已經更改過了host許可權

3.遠端mysql資料庫下my.cnf配置檔案下bind address引數是否有設定

解決方案:

1.第一種情況的話基本上是一些閘道器的問題.防火牆之類的.

2.第二種情況的話,到你遠端資料庫裡面給個root遠端許可權.具體命令如下

grant all privileges on *.* to 

'root'@'%'

identified by 'password' with grant option;

解決方案為:找到mysql安裝目錄下的my.cnf檔案.然後修改注釋掉bind-address 引數即可

mysql 遠端連線錯誤

如果你想連線你的mysql的時候發生這個錯誤 error 1130 host 192.1.2.183 is not allowed to connect to this mysql server 解決方法 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在local...

Mysql 連線遠端常見錯誤

一.修改root 使用者 host欄位登入到mysql show databases 檢視所有資料庫 use mysql 選中資料庫 修改 mysql 資料庫 下 user 表的 host 字段 update user set host where host localhost and user r...

遠端連線MYSQL提示1130錯誤

如果你想連線你的mysql的時候發生這個錯誤 error 1130 host 192.168.1.3 is not allowed to connect to this mysql server 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的...