(1) 검증하지 않는 않는 옵션(-k) 사용

curl -k {URL}

 

(2) 인증서를 발급한 기관을 신뢰하는 인증기관 목록에 추가

$ sudo mkdir /usr/local/share/ca-certificates/{기관명}

$ openssl s_client -connect {URL}:443 |tee certlog

$ openssl x509 -inform PEM -in certlog -text -out certdata

$ openssl x509 -inform PEM -text -in certdata 

$ sudo cat certdata >> /usr/local/share/ca-certificates/{기관명}/ca-bundle.crt

$ sudo update-ca-certificates

 

curl 에 신뢰하는 인증기관 인증서(CA Cert) 추가하기 (lesstif.com)

 

curl 에 신뢰하는 인증기관 인증서(CA Cert) 추가하기

Ubuntu 는 /etc/ssl/certs/ca-certificates.crt 또는  /etc/ssl/certs 디렉터리에서 CA 목록 로딩

www.lesstif.com

https 연결시 서버의 SSL 인증서 추출하기 (curl 또는 web browser 사용) (lesstif.com)

 

https 연결시 서버의 SSL 인증서 추출하기 (curl 또는 web browser 사용)

 

www.lesstif.com

How to install certificates for command line - Ask Ubuntu

 

How to install certificates for command line

So in school we need to install a certificate to access https sites. In firefox, I can import the certificate. However, I can't do so with the command line. For example, running git push I get: fa...

askubuntu.com

 

리눅스 우분투 gui 설치 ( ubuntu server 16.04 LTS ) (tistory.com)

 

리눅스 우분투 gui 설치 ( ubuntu server 16.04 LTS )

안녕하세요 롯사입니다. 우분투 desktop 버전이 아닌 server 버전으로 인프라 관리의 목적으로 구축을 하셨다면 GUI 레벨이 아닌 CLI 레벨로 구축이 됩니다. 인프로 관리에 필요한 여타 설루션을 도입

wlsvud84.tistory.com

 

$ sudo apt-get update

$ sudo apt-get upgrade

 

$ sudo apt-get install ubuntu-desktop

$ startx

How To Install Go 1.15 on Ubuntu 18.04 & 16.04 LTS – TecAdmin

 

How To Install Go 1.15 on Ubuntu 18.04 & 16.04 LTS – TecAdmin

Installing go Ubuntu. Go has released latest version 1.15. install Go 1.15 on your Ubuntu 19.10, 18.04, 16.04 LTS, 14.04 LTS systems. install Go on Ubuntu

tecadmin.net

 

+ Recent posts