解决使用navicat连接mysql时10060错误

navicat连接mysql时,出现解决使用navicat连接mysql时10060错误
一般出现这种错误多是由于服务器未开启3306端口导致的。

Centos

# iptables -I INPUT 4 -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
# service iptables save #保存iptables规则

Ubuntu/Debian

# iptables -I INPUT 4 -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
# iptables-save > /etc/iptables.up.rules  #保存iptables规则

数据库授权

# mysql -uroot -p
MySQL [(none)]> grant all privileges on db_name.* to db_user@'%' identified by 'db_pass'; #授权语句,特别注意有分号
MySQL [(none)]> flush privileges;
MySQL [(none)]> exit; #退出数据库控制台,特别注意有分号

or

# vim /etc/mysql/mysql.conf.d/mysqld.cnf

将bind-address这行注释到或者改为0.0.0.0
解决使用navicat连接mysql时10060错误
重启mysql

上一篇:转 CentOS7使用firewalld打开关闭防火墙与端口


下一篇:iptables的概念与底层原理(详解)