建立了乙個mmroot的使用者,密碼為mm1234
*.*表示資料和表
%表示所有的ip都可以訪問(即可以遠端訪問)
all privileges表示所有的許可權
with grant option表示授權使用者的許可權
例項:mysql> grant all privileges on *.* to 'mmroot'@'%' identified by 'mm1234' with grant option;
query ok, 0 rows affected
mysql> grant all privileges on *.* to 'mmroot'@'%' identified by 'mm1234';
query ok, 0 rows affected
mysql> flush privileges;
query ok, 0 rows affected
mysql>
mysql遠端訪問授權,建立使用者並授權
mysql預設root使用者沒有密碼,輸入mysql u root 進入mysql 1 初始化root密碼 進入mysql資料庫 mysql update user set password password 123456 where user root 修改mysql密碼 mysqladmin u...
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...