赞
踩
原文地址: https://blog.csdn.net/weixin_41386222/article/details/130933317
1、运行: MySQL 8.1 Command Line Client (在开始菜单)
2、在MySQL所在服务器上使用命令登录到MySQL数据库中
mysql -u root -p
3、选择mysql数据库,并查询权限
use mysql;
select host from user where user='root';
可以看到,执行查询语句后得到的数据结果中 host 的值是 localhost
我们执行update语句修改权限
update user set host = '%' where user ='root';
4、刷新配置
flush privileges;
注,必须输入分号: ;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。