解決mysql無法遠端登入的方法

一隻小螞蟻吆發表於2020-04-06

使用mysql命令或gui工具連線遠端的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 -pvmwaremysql>use mysql;mysql>update user set host = '%' where user = 'root';mysql>select host, user from user;

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

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
如果你想允許使用者myuser從ip為192.168.1.3的主機連線到mysql伺服器,並使用mypassword作為密碼
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

 

 

如果做完以上步驟後依舊提示:Can't get hostname for your address,可繼續做以下步驟:

編輯/etc/my.cnf,在:
[mysqld]
內新增一行:skip-name-resolve

MySQL忽略資料庫表名大小寫
修改/etc/my.cnf,在
[mysqld]
內新增一行:lower_case_table_names=1

相關文章