자체 CA 및 서명 인증서
# cd /etc/pki/CA/
# (umask 077; openssl genrsa -out private/cakey.pem 2048)
# openssl req -new -x509 -key private/cakey.pem -out cacert.pem -days 3656
Country Name (2 letter code) [XX]:CN
State or Province Name (full name) []:Yunnan
Locality Name (eg, city) [Default City]:Kunming
Organization Name (eg, company) [Default Company Ltd]:San
Organizational Unit Name (eg, section) []:Students
Common Name (eg, your name or your server's hostname) []:ca.san.com
Email Address []:[email protected]
# ls -lh
20K
-rw-r--r--. 1 root root 1.4K 3 29 16:18 cacert.pem
# touch serial index.txt serial
# echo 01 > serial
# ls
cacert.pem certs crl index.txt newcerts private serial
2. 인증서 서명
# (umask 077; openssl genrsa -out /root/mykey2.pri 2048) #
# openssl req -new -key /root/mykey2.pri -out /root/myreq.csr #
Country Name (2 letter code) [XX]:CN
State or Province Name (full name) []:Yunnan
Locality Name (eg, city) [Default City]:Kunming
Organization Name (eg, company) [Default Company Ltd]:San
Organizational Unit Name (eg, section) []:Students
Common Name (eg, your name or your server's hostname) []:www.san.com
Email Address []:[email protected]
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
# openssl ca -in myreq.csr -out mycert.crt -days 365
# ls
mycert.crt #
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin Springboot -- 파트 13 POST で決まった形の json を受け取れるようにするSpring MVC로 Postmapping 와 関数の引数の RequestBody で中身を引き取れるらしい Spring Webflux는 이를 위한 책이 될 것입니다. こちらではriaクtiveに書けるため, 非同期で完全に作...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.