Jenkins CI - SSL handshake_failure

一个人想着一个人 提交于 2019-12-06 07:02:29

So, it looks like it was an issue dealing with the SSL configuration on the server. Apparently SVNKit won't work with TLSv1 for some reason.

Our initial configuration was to only allow TLSv1:

SSLProtocol -all +TLSv1

So, the fix was to enable TLSv1 and SSLv3:

SSLProtocol -all +SSLv3 +TLSv1

It looks like the server is responding back to the client, but the client doesn't like the response. Look at the client side log and see if there is anything that will hint what the problem might be.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!