Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn SSL error: certificate verify failed?

Tags:

ssl

svn

For about 6 hours I'm now trying to checkout a working copy from my teams server. This is my command svn co https://myserver.com/svn/myproject workingcopy But I get the following error message: svn: OPTIONS of 'https://myserver.com/svn/myproject': SSL handshake failed: SSL error: certificate verify failed (https://myserver.com/svn/)

On every machine I'm trying to checkout this workingcopy it works like a charm, just on my Mac I'm getting this certain error.

like image 344
MechMK1 Avatar asked Nov 05 '11 19:11

MechMK1


1 Answers

I know this is an old post, but I landed here from google.

This solved my problem. Handshake failure with "SSL error code -1/1/336032856" on OS X 10.7

(turns out my ServerName in Apache didn't match my server name in the cert - full details available in the SVN FAQ: http://subversion.apache.org/faq#ssl-error-336032856)

The short of it: "Make sure your server configuration uses correct values for ServerName and NameVirtualHost." (and make sure they match the CN in the cert).

like image 137
rwg1138 Avatar answered Sep 28 '22 07:09

rwg1138