遠端連線mysql失敗情況總結

2022-03-18 16:47:15 字數 350 閱讀 3472

1)公網ip不正確

2)遠端伺服器mysql服務沒啟動

3)登入mysql的使用者名稱密碼錯誤

相信上面三種情況相比都不會弄錯,可以看看伺服器內的防火牆狀態以及有沒有開放3306埠

4)沒有關閉遠端伺服器內部的防火牆(多半是伺服器內的防火牆沒關導致遠端連線被阻擋了)

systemctl status firewalld   檢視當前防火牆狀態。 

systemctl stop firewalld 關閉當前防火牆。

systemctl disable firewalld 開機防火牆不啟動。

5)防火牆安全組沒有開放對應的埠(3306埠沒開)

mysql 遠端連線失敗 mysql 遠端連線失敗

一 mysql 禁止 ip 遠端連線 mysql 庫 user表中 host 為 localhost 修改為 允許所有 ip 連線 或者 新增一條資料 host 為允許連線的 ip 二 授權某個使用者可以遠端連線 以root為例 grant all privileges on to root ide...

mysql 遠端連線失敗

mysql 庫 user表中 host 為 localhost 修改為 允許所有 ip 連線 或者 新增一條資料 host 為允許連線的 ip 以root為例 grant all privileges on to root identified by password with grant opti...

Mysql連線失敗總結

linux下 方法一 etc init.d mysql stop mysqld safe user mysql skip grant tables skip networking mysql u root mysql mysql update user set password password n...