1. 문제점

svn: E170013: Unable to connect to a repository at URL 'https://some.host/some/repo/'
svn: E120171: Error running context: An error occurred during SSL communication

 

2. 해결 방법

/usr/lib/ssl/openssl.cnf 파일을 다음과 같이 수정할 것

 

# 첫째 라인
openssl_conf = default_conf

.
.
.
# 끝라인
[ default_conf ]

ssl_conf = ssl_sect

[ssl_sect]

system_default = ssl_default_sect

[ssl_default_sect]
MinProtocol = TLSv1
CipherString = DEFAULT:@SECLEVEL=1

 

 

참고 : https://superuser.com/questions/1473219/subversion-error-svn-e120171-error-running-context-an-error-occurred-during

+ Recent posts