mysql遠端連線失敗被拒絕。

2021-08-14 13:55:36 字數 922 閱讀 6413

如果你想連線你的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

'myuser'@'%'

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;

grant all privileges on *.* to

'root'@'192.168.1.3'

identified by '1235' with grant option;

mysql>flush privileges;  這句一定要加上!!!

Mysql遠端連線被拒絕

遠端連線mysql資料庫時 error 1045 28000 access denied for user root localhost using password yes 遠端連線被拒絕 解決方法 mysql use mysql database changed mysql grant all ...

遠端連線linux上的mysql被拒絕

最近搞了一台阿里雲伺服器,裝上mysql之後,發現外部遠端連線mysql居然被拒絕了。新裝的mysql,並沒有要求設定密碼,所以無法正常登陸mysql。首先我強調一下,阿里雲上的安全組設定中3306端 已經釋放,並且linux上的3306埠也已經放開了。埠的原因,已經排除。主要是不知道mysql的初...

mysql遠端訪問被拒絕

以 root 賬號進入 mysql,use mysql grant allprivileges on to 某個使用者 identified by 使用者密碼 flush privileges 其中 是將所有的資料庫賦予某個使用者 也可以指定某個庫database.其中 是允許遠端連線的 ip 位址...