Linux解决:svn: Can't connect to host '*.*.*.*': 因为连接的方没有正确回答或连接在以后的时间

svn服务启动,在server在可使用命令将文件检查,但它不能检测其他计算机。已经提出:
"svn: Can't connect to host '*.*.*.*': 因为连接方在一段时间后没有正确答复或连接"
在网上找了半天说什么没有启动服务什么的。废话,没起服务玩蛋呀。 
我通过检查防火墙看到3690port根本没有对外开放,通过改动配置文件,解决这个问题:
改动例如以下:

[root@nb home]# more /etc/sysconfig/iptables # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT -A INPUT -p icmp -j ACCEPT -A INPUT -i lo -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 8009 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 3690 -j ACCEPT -A INPUT -j REJECT --reject-with icmp-host-prohibited -A FORWARD -j REJECT --reject-with icmp-host-prohibited COMMIT [root@nb home]# /etc/init.d/iptables restart iptables:清除防火墙规则: [确定] iptables:将链设置为政策 ACCEPTfilter [确定] iptables:正在卸载模块: [确定] iptables:应用防火墙规则: [确定]


版权声明:本文博客原创文章,博客,未经同意,不得转载。

原文地址:https://www.cnblogs.com/mengfanrong/p/4620192.html