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'@'10.10.40.54' identified by '123456' with grant option;
jdbc連mysql亂碼問題
昨天晚上蹦出來這麼個bug,趕緊解決一下,為了資料庫課程設計突擊jsp,還真是遇到了不少問題。就像前面講的mysql我用的utf8mb4 unicode ci,那麼,亂碼產生的主要原因是字元編碼 characterencoding 不正確 1 在資料庫伺服器上建立 時沒有選擇支援中文的編碼方式 2 ...
mysql連線錯誤問題
error 1130 host 192.168.1.3 is not allowed to connect to this mysql server 解決方法 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 m...
mysql連庫 mysql遠端連庫
mysql連線遠端庫 伺服器端 1 登陸伺服器端,進入命令列,windows cmd 2 設定使用者 密碼讓指定的ip訪問 mysql u root p 或安裝的快捷方式進入 mysql command line client,使用grant命令 grant 許可權1,許可權2,許可權n on 資料...