centos6 ssl 인증키 (미완)
- 프로그래밍/서버(리눅스,centos)
- 2021. 6. 24.
0. find / -name openssl
1. /usr/sbin/httpd -l
으로 mod_ssl 모듈 확인
- 정적일 경우 (사진)
- 동적일 경우 (사진)
2. openssl genrsa -des3 -out test.key 2048
으로 개인키 생성
- 패스워드 생성
- 확인방법 openssl rsa -noout -text -in test.key
3. openssl req -new -key test.key -out test.csr
으로 csr 생성
commonName = *.xxx.com // 사용하실 도메인, Wild Card SSL
countryName = KR
localityName = Haeundae
organizationName = RecursiveSoft Inc
organizationalUnitName = Dev Team
stateOrProvinceName = Busan
emailAddress = xxx@xxx.com
- 확인 방법 openssl req -noout -text -in test.csr
4. cat test.csr
https://www.comodossl.co.kr/certificate/ssl-installation-guides/Apache-csr-crt.aspx
'프로그래밍 > 서버(리눅스,centos)' 카테고리의 다른 글
centos7 apm 설치 (0) | 2021.07.08 |
---|---|
[초간단] zerossl 에서 SSL 인증서 받고, 적용까지 (0) | 2021.06.25 |
서버 시간 동기화 (0) | 2021.06.09 |
CentOS 6 yum Error: Cannot find a valid baseurl for repo: base출처: https://www.juntoday.com/500?category=749249 [JunToday.com] (0) | 2021.05.28 |
http접속시 https로 (0) | 2021.05.09 |