MySql:局域網和權限用戶管理

MySql 5.6(XP)/5.7(win7) 添加用戶和設置局域訪問權限操做.請在 http://sourceforge.net/  下載MySql Control Center(不是安裝版本).

http://dev.mysql.com/doc/refman/5.7/en/grant.htmlhtml

MySql 5.7mysql

1 use mysql;
2 
3 select * from user;
4 
5 update user set authentication_string=password('0214') where user='geovindu';
6 
7 update user set plugin='mysql_native_password' where user='geovindu';

 

 MySql control Center:sql

 1 #20150320 塗聚文
 2 #系統數據庫 MYSQL 5.6,5.7
 3 
 4 use mysql;
 5 
 6 select 'host' from user where user='root';
 7 
 8 select  * from user where user='root';
 9 #設置局域網訪問
10 update user set host = '%' where user ='root';
11 flush privileges;
12 
13 select  * from user;
14 #5.6
15 select Host,User,password from mysql.user;
16 #5.7
17 select Host,User,authentication_string from mysql.user;

 

use mysql;
select * from user;
#5.6如下
update user set password=password('0214') where user='geovindu';
#5.7
update user set authentication_string=password('0214') where user='geovindu';

 win7:數據庫

 

xp:spa

相關文章
相關標籤/搜索