时间:2021-07-01 10:21:17 帮助过:4人阅读
mysql -u root -p(登陆mysql数据库)
use mysql;
grant all privileges on *.* to root@‘%‘ identified by "root";(后面这个root指的是mysql数据库的密码)
exit即可。
2、实现远程连接(改表法)
mysql -u root -p(登陆mysql数据库)
use mysql;
update user set host = ‘%‘ where user = ‘root‘;
exit即可。
设置mysql的远程访问权限
标签:mys size 打开 strong ant use sql 远程连接 span