Study/GIT

[error-1] SSL certificate problem

짬송 2021. 5. 4. 16:21

2021.01.26.

#2.0 installation

 

[오류]

SSL certificate problem

oh my zsh 를 설치할때 git clone에서 문제가 발생함.


curl: (60) SSL certificate problem: self signed certificate in certificate chain More details here: [https://curl.haxx.se/docs/sslcerts.html](https://curl.haxx.se/docs/sslcerts.html)  curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above.

 

[해결]

SSL Verify 옵션을 false로 설정하여 해결함.

git config --global http.sslVerify false

를 해주고 curl 명령어에 -k를 붙여준다.

 

이 해결방법으로 일시적으로 해결은했지만 이후로

다른걸 설치할때도 계속 SSL certificate problem오류가 뜨는데 근본적인 해결법을 못찾겠다.

업무용 컴퓨터라서 그런건가?!

 

+)2021.01.27.추가 - 업무용 컴퓨터 네트워크 문제였다.

 

[참고]

git clone 오류시 해결방법