Mysql 連線遠端常見錯誤

2021-09-16 22:04:39 字數 528 閱讀 9856

一. 修改root 使用者:host欄位

登入到mysql

show databases; //檢視所有資料庫

use mysql; //選中資料庫

修改 mysql 資料庫 下 user 表的 host 字段

update user set host="%" where host="localhost" and user="root";

flush privileges; //重新整理修改後的使用者許可權

或service mysqld restart //重啟服務

二. 關閉防火牆:防火牆會遮蔽一些埠
ps -ef | grep pirewalld   //檢視防火牆程序

service firewalld stop //關閉防火牆

三. mysql版本與 mysql client 版本對照
mysql --version   //檢視遠端mysql資料庫的版本

mysql 遠端連線錯誤

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

mysql遠端連線錯誤

關於mysql 遠端連線的錯誤有三種情況需要來考慮 1.是否能ping的通 2.確定root使用者已經更改過了host許可權 3.遠端mysql資料庫下my.cnf配置檔案下bind address引數是否有設定 解決方案 1.第一種情況的話基本上是一些閘道器的問題.防火牆之類的.2.第二種情況的話...

mySql連線常見錯誤問題

mysql is not allowed to connect to this mysql server 如果你想連線你的mysql的時候發生這個錯誤 error 1130 host 192.168.1.3 is not allowed to connect to this mysql server...