Hullo. I can connect to my mysqld running on fedora locally. However, if I telnet to port 3306 from another machine (directly connected via a x-over cable), or port scan that port, it doesn't connect. Looks like "skip-networking" is off in the mysqld config, so I'm guessing it's an iptables configuration issue, but I'm not an iptables guru...yet. Any guidance?Thanks.snipped from "netstat -atn"tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN[root@localhost ~]# iptables -LChain FORWARD (policy ACCEPT)target prot opt source destinationRH-Firewall-1-INPUT all -- anywhere anywhereChain INPUT (policy ACCEPT)target prot opt source destinationRH-Firewall-1-INPUT all -- anywhere anywhereChain OUTPUT (policy ACCEPT)target prot opt source destinationChain RH-Firewall-1-INPUT (2 references)target prot opt source destinationACCEPT all -- anywhere anywhereACCEPT icmp -- anywhere anywhere icmp anyACCEPT ipv6-crypt-- anywhere anywhereACCEPT ipv6-auth-- anywhere anywhere ACCEPT udp -- anywhere 224.0.0.251 udp dpt:5353ACCEPT udp -- anywhere anywhere udp dpt:ippACCEPT all -- anywhere anywhere state RELATED,ESTABLISHEDACCEPT tcp -- anywhere anywhere state NEW tcp dpt:sshACCEPT tcp -- anywhere anywhere state NEW tcp dpt:httpACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ftpACCEPT tcp -- anywhere anywhere state NEW tcp dpt:smtpREJECT all -- anywhere anywhere reject-with icmp-host-prohibited[root@localhost ~]#
5/6/2006 7:53:55 PM
I think I needed this line:ACCEPT tcp -- anywhere anywhere tcp dpt:mysql state NEWI'm still running into an error, but at least it's a different error now. Thanks.
5/6/2006 8:20:02 PM
W00!!W00!!Thanks.
5/7/2006 10:44:41 AM