에러 내용
Git으로 레파지토리(Repository)를 clone하기 위해 명령어를 날린 순간 아래와 같은 에러가 떨어지고 말았다.
$ git clone https://huggingface.co/kakaobrain/kogpt
Cloning into 'kogpt'...
fatal: unable to access 'https://huggingface.co/kakaobrain/kogpt/': SSL certificate problem: unable to get local issuer certificate
SSL 인증서 문제로 로컬 발급자 인증서를 가져올 수 없다는 에러였다. 이 문제를 해결하는 방법은 git의 설정을 바꾸면 되는데 아래와 같이 설정을 변경하도록 한다.
해결 내용
$ git config --global http.sslVerify false
위와 같이 설정하게 되면 ssl 인증서가 필요 없는 경우 ssl 검사를 하지 않게 조치한다.
$ git clone https://huggingface.co/kakaobrain/kogpt
Cloning into 'kogpt'...
remote: Enumerating objects: 113, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 113 (delta 0), reused 0 (delta 0), pack-reused 110
Receiving objects: 100% (113/113), 860.53 KiB | 363.00 KiB/s, done.
Resolving deltas: 100% (51/51), done.
조치 설정 후, git clone이 이상없이 되는 것을 확인 할 수 있다.
전체 문제 해결 과정
반응형
'Stackoverflow > Server' 카테고리의 다른 글
Centos Path 설정하기 (0) | 2020.06.15 |
---|---|
Tomcat : Request header is too large (1) | 2018.04.04 |