今天同事要連我電腦的資料庫 我以為只要127.0.0.1 可以訪問就是 執行通過ip訪問的。。。 然而並不是。。這裡記錄下方法
1.開啟命令列 進入你電腦的 mysql的bin 目錄下
mysql -u root -p
輸入密碼
2.開啟 mysql 資料庫
use mysql
檢索 user 和 host 字段 —— mysql> select user, host from user;
結果應該顯示:
如果沒有 user=root ,host = % 的使用者,則執行下面語句:
mysql> update user set host='%' where user='root';
3.給root授權
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
其中兩個root是我的 「使用者名稱」和「密碼」
4、讓許可權立即生效
flush privileges;
2019-12-12 19:46:29
Mysql設定在區域網內能被訪問
修改linux的網路設定使之在區域網內能被訪問 將73上的資料重新匯入到linux下,修改匯入後顯示不合理的地方 安裝軟體使windows下能遠端控制linux 1 改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 ...
mysql區域網訪問設定
error 1130 host 192.168.1.132 is not allowed to connect to this mysql server 的解決方法 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更...
mysql區域網訪問設定
區域網連線mysql報錯 error 1130 host 192.168.0.220 is not allowed to connect to this mysql server 解決方法 可能是帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysq...