1.mysql8.0版本后必须先创建远程访问用户
mysql> CREATE USER 'root'@'%' IDENTIFIED BY '你的密码';
2.然后再公开权限
mysql> grant all privileges on *.* to 'root'@'%';
1.mysql8.0版本后必须先创建远程访问用户
mysql> CREATE USER 'root'@'%' IDENTIFIED BY '你的密码';
2.然后再公开权限
mysql> grant all privileges on *.* to 'root'@'%';