mysql的远程连接
赋权
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
执行上面的命令之后要执行下面的命令刷新
FLUSH PRIVILEGES
all 表示对数据的所有操作(insert delete update select)
第一个*表示哪个数据库
第二个*表示哪个数据库的表
%表示哪个机器
例子:
grant select privileges on my_db .my_table to 'root'@'%' identified by '123456' with grant option;
对所有机器的root用户开启my_db数据库中my_table表的查询权限