반응형
[오류 내용]
git clone시, 아래와 같이 Peer의 인증서 발행자를 신뢰하지 못하는 경우.
[root@vm-centos-ctl app]# git clone https://github.com/ansible/awx.git
Cloning into 'awx'...
fatal: unable to access 'https://github.com/ansible/awx.git/': Peer's certificate issuer has been marked as not trusted by the user.
[해결방안]
git clone시 SSL을 검증하지 않도록 설정하는 방법.
2가지 방법이 있다.
1) Set SSL Verify to false only for specific repo:
git config http.sslVerify false
2) Set SSL Verify to false Globally:
git config --global http.sslVerify false
반응형
'IT Knowledge > 기타' 카테고리의 다른 글
Yum 없이 패키지 설치(feat. CentOS gcc 설치) (3) | 2022.04.18 |
---|---|
리눅스 SCP 사용법(원격지 파일 전송) (0) | 2022.02.16 |
git proxy Setting(http/https) (0) | 2022.01.07 |
RedisClusterNode, Redis Node IP 변경 검증 이슈 (0) | 2021.12.27 |
Linux Systemd 서비스 escape 문자(CentOS) (0) | 2021.12.22 |
댓글