Mysql 监听所有但无法进行远程连接

Mysql 监听所有但无法进行远程连接

我在 Centos 上运行此命令

netstat -an|grep 3306 | grep LISTEN

它给了我

tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN

但当我尝试远程连接到服务器时,却无法连接。

我的

/sbin/iptables -L -v -n

好像 -

Chain INPUT (policy ACCEPT 1347 packets, 211K bytes)
 pkts bytes target     prot opt in     out     source               destination                              
    0     0 ACCEPT     tcp  --  eth0   *       0.0.0.0/0            0.0.0.0/0                                        tcp dpt:3306

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination                              

Chain OUTPUT (policy ACCEPT 1346 packets, 591K bytes)
 pkts bytes target     prot opt in     out     source               destination  

我正在使用 mysql 5.1。

相关内容