场景描述:svn客户端:1.8
svn服务端:操作系统:CentOS 6.5 版本:1.6
客户端连接时,报错,如下:Can't connect to host '*.*.*.*': 由于连接方在一段时间后没有正确答复或连接的主机没有响应,连接尝试失败。
问题原因:
1、网络原因,主机不可达;
2、服务没有启动;
3、防火墙拦截;
解决方案:
步骤运行以下命令:
[root@localhost svn]# /sbin/iptables -I INPUT -p tcp --dport 3690 -j ACCEPT
[root@localhost svn]# /etc/init.d/iptables save
iptables:将防火墙规则保存到 /etc/sysconfig/iptables: [确定]
[root@localhost svn]# service iptables restart
iptables:将链设置为政策 ACCEPT:filter mangle nat [确定]
iptables:清除防火墙规则: [确定]
iptables:正在卸载模块: [确定]
iptables:应用防火墙规则: [确定]