[Git 필기]"error:14090086:SSL 루틴:SSL 3GET_SERVER_CERTIFICATE:certificate verify failed"해결 방법
2364 단어 Linux
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 =====================
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
바이너리 파일cat 또는tail, 터미널 디코딩 시 처리 방법cat으로 바이너리 파일을 보려고 할 때 코드가 엉망이 되어 식은땀이 났다. 웹에서 스크롤된 정보의 처리 방법과alias의 설정을 요약합니다. reset 명령을 사용하여 터미널을 재설정합니다.이렇게 하면 고치지 못하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.