SVN连接报错
发送https请求,
由于客户端jdk版本过高,服务端版本低。导致异常:
javax.net.ssl.SSLHandshakeException: Server chose SSLv3, but that protocol version is not enabled or not supported by the client.
修改本机jdk安装目录/lib/security下得java.security中的配置
去掉 jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768 中的 SSLv3 即可!
本文介绍了解决SVN连接时出现的SSLHandshakeException错误的方法。该问题由客户端与服务端的JDK版本不匹配引起,通过修改本地JDK安装目录下的java.security文件,移除SSLv3禁用配置,可以有效解决此问题。
435

被折叠的 条评论
为什么被折叠?



