MySql:局域网和权限用户管理
MySql 5.6(XP)/5.7(win7) 添加用户和设置局域访问权限操作.请在 http://sourceforge.net/ 下载MySql Control Center(不是安装版本).
http://dev.mysql.com/doc/refman/5.7/en/grant.html
MySql 5.7
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:
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:
哲学管理(学)人生, 文学艺术生活, 自动(计算机学)物理(学)工作, 生物(学)化学逆境, 历史(学)测绘(学)时间, 经济(学)数学金钱(理财), 心理(学)医学情绪, 诗词美容情感, 美学建筑(学)家园, 解构建构(分析)整合学习, 智商情商(IQ、EQ)运筹(学)生存.---Geovin Du(涂聚文)