mysql远程连接权限grant all privileges
2022-02-19 本文已影响0人
XBruce
MySql 8.0授权远程改为:
create user root@'%' identified by '123456';
grant all privileges on *.* to root@'%' with grant option;
MySql 8.0授权远程改为:
create user root@'%' identified by '123456';
grant all privileges on *.* to root@'%' with grant option;