今天在使用 svnX时,url中包含了https//,总是报证书验证错误Error validating server certificate for,参考了下面这篇文章之后,问题解决!
http://blog.csdn.net/yhawaii/article/details/7511141
原文如下:
今天使用Xcode自带的svn客户端时,总是连接不上服务器,报如下错误:
Error validating server certificate for ‘https://svn2.assembla.com:443’: – The certificate is not issued by a trusted authority. Use the fingerprint to validate the certificate manually!
Certificate information: – Hostname: *.assembla.com – Valid: from Thu, 24 Mar 2011 19:30:40GMT until Sun, 24 Mar 2013 19:30:40 GMT – Issuer: 07969287,http://certificates.godaddy.com/repository, GoDaddy.com, Inc., Scottsdale, Arizona, US – Fingerprint: ae:b0:b6:94:14:5f:4b:28:d2:82:68:ae:e9:18:85:b3:ea:36:ee:f2
解决办法:
1、打开终端(实用工具 -->终端),在终端中输入如下命令(注意下面的url更换成你自己的url地址):
svn ls https://82.100.10.11?0/svn/Superscou
2、然后会出现一个服务器证书的提示,根据提示输入 “p”,然后回车,问题就可以得到解决了
----------------------------------
类似的问题还有这个:
使用svnX时出现Can’t read stdin: End of file found的解决方法
今天在XCode4下准备用SVN import项目时出现
Authentication realm: <svn://**********.net:3690> **********-**********
Password for 'svn':
Authentication realm: <svn://**********.net:3690> **********-**********
Username: svn: Can't read stdin: End of file found
类似这样的错误弹板,项目是新的,SVN repo也是新的,且设置内的账号密码绝对没问题,折腾半天发现可能时cache的问题,解决方法也简单,进入命令好,用svn list命令访问一下repo的路径,就会提示重新输入账号密码,输对了就行了,回XCode再试就没问题了。个人认为这应该是由于XCode功能不完善导致!