Error running context : The server unexpectedly closed the connection

SVN报错:

Error running context : The server unexpectedly closed the connection

报错解析:
指的是远程服务关闭了连接,检查思路如下

1.查看防火墙firewalld&&iptables
firewall-cmd --stat  
如返回的是 not running则证明firewalld没有开启
iptables -nL
查看规则中是否有3690的drop
如果该环境中没有使用过iptables 可以直接使用iptables -F 清空规则 !!!生产慎用
2.查看svn服务是否启动
ps uax | grep svn && netstat -lnpt | grep 2690
此方法用于确定进程及端口
3.在使用nginx反向代理的情况下注意配置tcp转发
注意尤其是在使用IF.Svnadmin忘记配置的情况下
server {
	listen xxx so_keepalived=on;
	server_name xxx;
	proxy_pass svn_server:3690;
	}

方法总比问题多加油!!!!

你可能感兴趣的:(svn)