授權法:
在安裝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' with 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授權遠端訪問
mysql授權遠端訪問 在安裝mysql的機器上執行 1 d mysql bin mysql h localhost u root 這樣應該可以進入mysql伺服器 2 mysql grant all privileges on to root with grant option 賦予任何主機訪問資...
Mysql授權遠端訪問
在安裝mysql的機器上執行 1 d mysql bin mysql h localhost u root 這樣應該可以進入mysql伺服器 2 mysql grant all privileges on to root with grant option 賦予任何主機訪問資料的許可權 例如,你想m...
MySQL允許遠端授權
一 允許root使用者在任何地方進行遠端登入,並具有所有庫任何操作許可權,具體操作如下 在本機先使用root使用者登入mysql mysql u root p youpassword 進行授權操作 mysql grant all privileges on to root identified by...