Navicat for Mysql建立本地连接出现 1045 -Access denied for user'root'@'ipAddress'(using password :yes) 的问题

时间:2022-09-26 16:01:11

最主要的原因就是服务器上的mysql没有给本地授权。

方法很简单,例如电脑用的是windows 7操作系统的话电脑用的是windows 7操作系统,win+R输入cmd进入终端,然后进行授权,

grant all privileges on *.* to 'root'@'localhost' identified by '你的密码' with grant option;

当看到Navicat for Mysql建立本地连接出现 1045 -Access denied for user'root'@'ipAddress'(using password :yes) 的问题,说明已经可以使用navicat建立本地连接了。