본문 바로가기
시스템/쿠버네티스

[쿠버네티스] 젠킨스에서 깃랩전송시 fatal: could not read Username 에러 발생시

by cbwstar 2024. 1. 24.
728x90
반응형
fatal: could not read Username for 'https://invako.kro.kr:8090': No such device or address

깃랩 토큰 : glpat-sXzjyFdtfSg8gpfSmVvM

 

깃랩 접속 오류 발생시

터미널 접속(도커일경우 도커접속)

/* 접속설정 영구저장 */

git config --global credential.helper store

# 또는 로그인 정보를 시간단위로 저장

# git config --global credential.helper 'cache --timeout 600'

 

 

git config --global user.name manager

git config --global user.email cbwstar@gmail.com

git ls-remote -h -- https://invako.kro.kr:8090/cbw/piplinetest.git HEAD

Username for 'https://invako.kro.kr:8090': manager

Password for 'https://cbw@invako.kro.kr:8090': glpat-sXzjyFdtfSg8gpfSmVvM      #깃랩통합 발급받은 토큰입력

 

/* 정보확인 */

git config --list

 

 

git clone  https://xx.xxx.com:9888/xxxx.git 

certificate verification faile. CAfile: /etc/ssl~~~~~에러 발생시

SSL Verify 옵션을 Off 해주면 Clone일 잘된다.

 

git config --global http.sslVerify false

728x90
반응형

댓글



"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."

loading