Navicat for MySQL 2003 Can't connect to MySQL server on 'localhost'(10061)”

时间:2022-03-24 00:42:20

linux环境

Error1: 2003:Can't connect to MySQL server on 'localhost'

解决方法:

关闭Linux的防火墙功能,或者设置容许TCP协议的3306端口通过,可以下使用如下命令开启TCP协议的3306端口。

永久关闭防火墙:chkconfig iptables off
    /etc/init.d/iptables status 会得到一系列信息,说明防火墙开着。
    /etc/rc.d/init.d/iptables stop 关闭防火墙

Error2: 1130 - Host'ClientIP' is not allowed to connect to this MySQL server。

解决方法:

使用root 用户登陆Linux,登陆MySQL的root用户,更改容许登陆的IP地址范围。

    
[root@xxx ~]# mysql -u root -p  
 
    mysql>grant all privileges on *.* to 'root'@'%' identified by '你的Mysql密码' with grant option;  

再使用Navicat连接数据库即可。