전체 글: 1209개의 글

[윈도우 서버] TLS/SSL 인증서 문제

Posted by MD워시퍼
2023. 9. 19. 10:29 Study
728x90

git clone 으로   으로 로 접속시, 계속 다음과 같은 에러가 발생하고 있었다.

$ git clone https://github.com/XXXX
Cloning into 'XXXX'...
fatal: unable to access 'https://github.com/XXXX/TEST.git/': schannel: next InitializeSecurityContext failed: SEC_E_ILLEGAL_MESSAGE (0x80090326) - This error usually occurs when a fatal SSL/TLS alert is received (e.g. handshake failed). More detail may be available in the Windows System event log.

 

워시퍼의 하루

영문명 : The Daily of A Worshiper

md82.tistory.com

이게 왜 나오는거야? 하면서 별의 별 짓을 했다.

그중에 다음과 같이 해봤는데 다 안되었는데..

- git config --global http.sslVerify false
- export GIT_SSL_NO_VERIFY=0
- git config --global http.sslBackend openssl

마지막이 정답이었다.

추후 또 동일한 현상이 나타나면 해결하기 위해, 블로그에 적어놓는다.