아래와 같이 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 22.04 LTS)에 OpenStack 설치 실습 (2) | 2023.02.08 |
---|---|
우분투(ubuntu 20.04) 20.04에 OpenStack 설치 실습(설치 실패...) (0) | 2023.02.06 |
하이퍼바이저 오픈스택(OpenStack)의 기본 개념과 역사 (0) | 2023.01.27 |
하이퍼바이저의 정의와 분류(BareMetal/Native/Hosted) (0) | 2023.01.26 |
클라우드 컴퓨팅의 정의(Iaas/Paas/SaaS) (0) | 2023.01.25 |
댓글