解決方法:
首先,用本機登入到該myql資料庫上,分以下4種情況進行授權:
策略1、全部授權:
grant all privileges on *.* to 'root'@'%' with grant option //賦予任何主機訪問資料的許可權
flush privileges ;
策略2. 指定使用者名稱授權:
例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;
flush privileges;
策略3. 指定ip位址授權:
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器,並使用mypassword作為密碼
grant all privileges on *.* to 'myuser'@'192.168.1.3' identified by 'mypassword' with grant option;
flush privileges;
策略4. 指定使用者名稱 + 指定ip位址授權:
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器的dk資料庫,並使用mypassword作為密碼
grant all privileges on dk.* to 'myuser'@'192.168.1.3' identified by 'mypassword' with grant option;
flush privileges;
MySQL不允許從遠端訪問
以下是引用內容 error 1130 host 192.168.1.3 is not allowed to connect to this mysql server 解決方法 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mys...
解決MySQL不允許從遠端訪問的方法
1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 mysql u root p mysql use mysql mysql u...
解決MySQL不允許從遠端訪問的方法
首先更改my.cnf檔案,若有bind繫結的ip,把這一句注釋掉。然後修改使用者的登入許可權 1 改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入 mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 loc...