查一下你的MYSQL用户表里, 是否允许远程连接
1、授权
mysql>grant all privileges on *.* to 'root'@'%' identified by 'youpassword' with grant option;
mysql>flush privileges;
2、修改/etc/mysql/my.conf
找到bind-address = 127.0.0.1这一行
改为bind-address = 0.0.0.0即可
localhost是否指向127.0.0.1,
mysql是否启动成功
navicat for mysql 连接mysql报如上错误,之前修改过root密码,不好使,有没有别的办法,求指教