MySQL开启远程访问权限
1、切换数据库
use mysql;
2、给root用户分配远程访问权限
grant all privileges on *.* to 'root'@'%';
#创建数据库用户dmsTest,并授予远程连接权限。
create user 'dmsTest'@'%' identified by 'Ecs@123****';
#为dmsTest用户授权数据库所有权限。
grant all privileges on *.* to 'dmsTest'@'%';
#刷新权限。
flush privileges;
或者
create user '用户名'@'访问ip' identified by '密码';
授权
grant all privileges on *.* to '用户名'@'访问ip';
刷新权限
flush privileges;