본문 바로가기
💾 공대 라이프/클라우드_가상화

git clone 오류(server certificate verification failed. CAfile: none CRLfile: none) 시 해결법

by kuve 2023. 2. 1.
반응형

아래와 같이 git clone을 진행할 때, 

certificate verification fail이 발생한다. 

 

 

 

stack@sam-virtual-machine:~$ git clone https://git.openstack.org/openstack-dev/devstack
Cloning into 'devstack'...
fatal: unable to access 'https://git.openstack.org/openstack-dev/devstack/': server certificate verification failed. CAfile: none CRLfile: none

 

 


 

이때 아래와 같이 

sslVerify를 disable 한다. 

 

stack@sam-virtual-machine:~$ git config --global http.sslVerify false

 


다시 git clone 시도를 하면!!

 

 

 

stack@sam-virtual-machine:~$ git clone https://opendev.org/openstack/devstack
Cloning into 'devstack'...
remote: Enumerating objects: 28862, done.
remote: Counting objects: 100% (28862/28862), done.
remote: Compressing objects: 100% (9771/9771), done.
remote: Total 49662 (delta 28170), reused 19091 (delta 19091), pack-reused 20800
Receiving objects: 100% (49662/49662), 10.77 MiB | 82.00 KiB/s, done.
Resolving deltas: 100% (34933/34933), done.
stack@sam-virtual-machine:~$ 

 

 

정상적으로 clone에 성공~~

 


 

https://kuveminton.tistory.com/47

 

Ubuntu 20.x.x 버전에 구버전 secureCRT로 SSH 접속하는 방법

터미널 소프트웨어인 secureCRT 6.5.4를 사용하여 Ubuntu 20.04.1 LTS 버전에 ssh 접속을 시도 시 아래와 같이 에러가 발생합니다. 최신 Ubuntu의 ssh의 key를 제공하지 않아 접속이 되지 않습니다. Key exchange fa

kuveminton.tistory.com

 

반응형

댓글