323,396 views
4 votes
4 votes
How do you create a CA file? short answer

User StuGrey
by
2.5k points

1 Answer

7 votes
7 votes

1.Create the root CA directory: mkdir -p /root/internalca cd /root/internalca.
2.Generate the private key of the root CA: openssl genrsa -out rootCAKey.pem 2048.
3.Generate the self-signed root CA certificate: ...
4.Review the certificate:
User Tako
by
2.6k points