[b]1、建立使用者[/b]
可以在任何地方登陸
create user test identified by 'test123';
或
create user 'test'@'%' identified by 'test123';
在本地登陸
create user 'test'@'localhost' identified by 'test123';
2、授權
將test庫所有許可權授權給本地登陸的test使用者
grant all privileges on test.* to test@'localhost';
將test庫所有許可權授權給其他地方登陸的test使用者
grant all privileges on test.* to test@'%';
3、重新整理許可權
flush privileges;
Mysql建立使用者 授權
建立使用者命令 create user 使用者名稱 localhost identified by 密碼 create user 使用者名稱 192.168.1.101 idendified by 密碼 create user 使用者名稱 identified by 密碼 create user 使...
mysql建立使用者,授權
可以用一句語句實現 grant all on to 使用者名稱 identified by 密碼 然後需要刷一下 flush privileges insert into mysql.user host,user,password values localhost hbchen p assword ...
mysql建立使用者,授權
檢視使用者 select from mysql.user 建立使用者 如果只允許從本機登陸,則 填 localhost 如果允許從遠端登陸,則填 create user test01 localhost identified by 123456 刪除使用者 drop user test01 loca...