One of my friends add a SSL in his SVN, and I got Server certificate verification failed: issuer is not trusted
# svnsync --non-interactive sync
svnsync: PROPFIND request failed on '.....'
svnsync: PROPFIND of '....': Server certificate verification failed: issuer is not trusted ()
To fix, run svnsync without "--non-interactive", that will prompt you to store the cert (p)ermanently in the .subversion directory. Example:
# svnsync sync
Error validating server certificate for '........':
- The certificate is not issued by a trusted authority. Use the fingerprint to validate the certificate manually!
Certificate information:
- Hostname: .....
- Valid: from ....
- Issuer: .....
- Fingerprint:
(R)eject, accept (t)emporarily or accept (p)ermanently? p
Authentication realm: <....> ....
Thanks, it worked! :)
Simao M
May 14, 2009 at 8:40 AMFor future googlers out there:
Look at these comments as well:
SVN over SSL
(Find the above heading at the below URL)
http://confluence.public.thoughtworks.org/display/CCNET/Subversion+Source+Control+Block
granadaCoder
January 14, 2010 at 12:13 PMthanks, man :)
ghazan
April 13, 2010 at 11:42 AM