Blogger Information
Blog 39
fans 1
comment 0
visits 62364
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
navicat 连接mysql
Dai的博客
Original
808 people have browsed it

我们使用navicat 连接mysql的时候很容易出现 10060的错误

这时候 有三占需要检查

1、进入mysql :

mysql -uroot -p
    use mysql;
select host,user,password from user;

看看是不是有一个能能够让所有远程连接的账号  (即有一个账户为 %)如果没有 就修改一个账户为%

update user set host='%' where user='root' limit 1;
flush privileges;  //更改权限

2、进入/etc/my.cnf

看看是否有一行 bind-address=127..0.0.1 如果有 删除这一行或者 把127.0.0.1更改为0.0.0.0

3、看看防火墙是否没有对3306端口开放

vi /etc/sysconfig/iptables
查看是否有下面这一行、如果没有添加 
-A input -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
//重启防火墙
service iptables restart


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post