mysql远程root密码修改
update mysql.user set authentication_string=password('123456') where user='root' and host='%';
flush privileges; --更新权限
update mysql.user set authentication_string=password('123456') where user='root' and host='%';
flush privileges; --更新权限