1、改表法 可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從localhost改稱% mysql -u root -p mysqluse mysql; mysqlupdate user set host = '%' where u
1、改表法
可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"
mysql -u root -p
mysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;
2、授權法
在安裝mysql的機器上執行:
1、d:/mysql/bin/>mysql -h localhost -u root
//這樣應該可以進入mysql伺服器
2、mysql>grant all privileges on *.* to 'root'@'%'with grant option
//賦予任何主機訪問資料的許可權
例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。
grant all privileges on *.* to 'myuser'@'%'identified by 'mypassword' wi
th grant option;
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器,並使用mypassword作為密碼
grant all privileges on *.* to 'myuser'@'192.168.1.3'identified by
'mypassword' with grant option;
3、mysql>flush privileges
//修改生效
4、mysql>exit
退出mysql伺服器,這樣就可以在其它任何的主機上以root身份登入。
mysql資料庫開啟慢查詢
一 慢查詢的設定 兩種配置方式,一種是通過命令配置,可以即時生效,但重啟服務後失效。示例如下 root laojiang mysql uroot proot set global long query time 1 set global slow query log on set global sl...
開啟MySQL資料庫操作記錄
1 檢視狀態 可以看到general log是開啟還是關閉狀態,以及這個帳號的general log檔案在哪,設定開啟 2 開啟資料庫日誌記錄 然後就可以去general log file的路徑檢視操作記錄了 採用資料庫內部檢視 出了可以用日誌檔案的形式檢視資料庫操作記錄之外,也可以把日誌作為乙個表...
mysql資料庫效能資料 MYSQL資料庫效能優化
1.選取最適用的字段屬性 表中字段的寬度設得盡可能小 char 的上限為 255 位元組 固定占用空間 varchar 的上限 65535 位元組 實際占用空間 text 的上限為 65535。盡量把字段設定為 not null,執行查詢的時候,資料庫不用去比較 null 值。2.使用連線 join...