[Git] git clone SSL 인증서 문제
2021. 11. 9. 16:51
인프라/Git
문제 git clone 시에 아래와 같은 오류가 발생하며 실패하는 경우가 있다. SSL Certificate problem: unable to get local issuer certificate 임시 방안 SSL을 등록하는 것이 좋겠지만, SSL 확인을 건너뛰고 clone을 하는 방법이 있다. 전역 설정 git config --global http.sslVerify false 지역 설정 (해당 디렉토리 들어가서 명령 수행) git config --local http.sslVerify false

[Gitlab] Linux에 Gitlab 설치
2021. 11. 8. 17:06
인프라/Git
1. 사전 작업 필요 패키지 설치 sudo dnf install -y curl policycoreutils openssh-server perl # Enable OpenSSH server daemon if not enabled: sudo systemctl status sshd sudo systemctl enable sshd sudo systemctl start sshd # Check if opening the firewall is needed with: sudo systemctl status firewalld sudo firewall-cmd --permanent --add-service=http sudo firewall-cmd --permanent --add-service=https sudo systemc..