通过Navicat for MySQL连接到虚拟机中的MySQL,但是报了图的错误
要进行两步:
1)授权
mysql>
grant
all
privileges
on
*.*
to
'root'
@
'%'
identified
by
'youpassword'
with
grant
option
;
mysql>flush
privileges
;
2)查看防火墙是否添加了3306的端口
(我直接关闭了防火墙)
本文共 254 字,大约阅读时间需要 1 分钟。
通过Navicat for MySQL连接到虚拟机中的MySQL,但是报了图的错误
要进行两步:
1)授权
mysql>
grant
all
privileges
on
*.*
to
'root'
@
'%'
identified
by
'youpassword'
with
grant
option
;
mysql>flush
privileges
;
2)查看防火墙是否添加了3306的端口
(我直接关闭了防火墙)
转载于:https://www.cnblogs.com/dingcx/p/6381657.html