121k views
0 votes
How do you create a CA file? short answer

User Lizou
by
5.0k points

1 Answer

5 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 EliasM
by
5.7k points