赞
踩
1、首选登录数据库、并打开mysql
数据库
## 登录
mysql -uroot -p
use mysql
2、将host设置为%,表示任何ip都能连接mysql
update user set host='%' where user='root' and host='localhost';
3、刷新privileges
flush privileges
参考:https://blog.csdn.net/netuser1937/article/details/53782921
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。