a. RSA 키 쌍을 생성 : openssl genrsa -out www.example.com.key 2048
b. 생성된 키를 사용하여, CSR 생성 :
# openssl req -new -sha256 -key www.example.com.key -out www.example.com.csr
=> 생성정보 : Common name (CN) : www.example.com / Company name (O) : Example Inc. / Location (L) : Mapogu / Province (ST) : Seoull / Country (C) : KR / Email Address : [test@example.com]
c. CSR 을 확인 : openssl req -text -in www.example.com.csr -noout
d. CSR 내용을 복사하여 CA에 제출
ps. 잘못된 정보 있으면 과감없이 태클 걸어 주세요. 바로 수정하도록 하겠습니다.
'시스템엔지니어' 카테고리의 다른 글
netcat 포트 체크 (0) | 2021.03.01 |
---|---|
newrelic 설치(php) (0) | 2021.03.01 |
groupadd, usermod 사용법 (0) | 2021.03.01 |
euc-kr -> utf-8 변환 (0) | 2021.03.01 |
ipmi 사용법 및 예제 (0) | 2021.03.01 |