[Git 필기]"error:14090086:SSL 루틴:SSL 3GET_SERVER_CERTIFICATE:certificate verify failed"해결 방법

2364 단어 Linux
git 를 사용 하여 https 방식 으로 github clone git repo 소스 코드 를 사용 할 때 다음 과 같이 오 류 를 보고 합 니 다.
Cloning into 'git'...
fatal: unable to access 'https://github.com/git/git.git/': SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

        curl verbose 옵션(디 버 깅 에 사용)을 열 고 git clone 을 다시 실행 합 니 다.자세 한 오류 보고:
$ export GIT_CURL_VERBOSE=1
$ git clone https://github.com/git/git.git   
Cloning into 'git'...
* Couldn't find host github.com in the .netrc file, using defaults
* About to connect() to github.com port 443
*   Trying 192.30.252.128... * connected
* Connected to github.com (192.30.252.128) port 443
* successfully set certificate verify locations:
*   CAfile: /usr/share/ssl/certs/ca-bundle.crt
  CApath: none
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Closing connection #0
fatal: unable to access 'https://github.com/git/git.git/': SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

        오류 알림 을 통 해 알 수 있 듯 이 git 가 curl 을 통 해 https 주 소 를 방문 할 때 이 컴퓨터 에서 ca 인증 서 를 찾 지 못 해 ssl certificate verify failed.
        해결 방법:
        
Setp1:
curl 홈 페이지 에서 cacert.pem 파일 다운로드(다운로드 링크 참조)
,curl 서버 SSL Certificates 에 대한 자세 한 내용 은 여기 참조
curl 
7.18.0 부터 curl 을 컴 파일 할 때 기본적으로 ca 인증 서 를 설치 합 니 다.제 기계 의 curl version=7.12.1,curl--version 은 볼 수 있 습 니 다):
      ~$ mkdir ~/tools/https-ca
      ~$ cd ~/tools/https-ca
      ~$ curl http://curl.haxx.se/ca/cacert.pem -o cacert.pem
       
Step 2:터미널 에서 다음 명령 을 실행 하여 git 에 ca 인증 정 보 를 설정 할 수 있 습 니 다.    
      ~$ git config --global http.sslCAInfo /home/slvher/tools/https-ca/cacert.pem
        cainfo 설정 이 git 프로필 에 성공 적 으로 기록 되 었 는 지 확인 하려 면~/.gitconfig 를 열 수 있 습 니 다.
        위 두 단 계 를 완성 한 후 git clone 을 실행 합 니 다.https://github.com/git/git.git성공
[참고 자료]1.StackOverflow: SSL certificate rejected trying to access GitHub over HTTPS behind firewall 2. cURL: Details on Server SSL Certificates
================== EOF =====================

좋은 웹페이지 즐겨찾기