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
use mysql; select * from user; update user set authentication_string=password('') where user='geovindu'; update user set plugin='mysql_native_password' where user='geovindu';
MySql control Center:
#20150320 涂聚文
#系统数据库 MYSQL 5.6,5.7 use mysql; select 'host' from user where user='root'; select * from user where user='root';
#设置局域网访问
update user set host = '%' where user ='root';
flush privileges; select * from user;
#5.6
select Host,User,password from mysql.user;
#5.7
select Host,User,authentication_string from mysql.user;
use mysql;
select * from user;
#5.6以下
update user set password=password('') where user='geovindu';
#5.7
update user set authentication_string=password('') where user='geovindu';
win7:
xp: