...
Image RemovedImage Added
Create the following directory tree and empty, two index.txt and serial files containing integer values.
Place files in their corresponding directories and modify them to match your organisation’s information.
Your keystores and truststores will be output to a directory named keystores
one level above your working directory.
Code Block |
---|
mkdir -p certs crl intermediate intermediate/certs intermediate/csr intermediate/newcerts intermediate/private private newcerts ../keystores;
touch index.txt intermediate/index.txt;
echo 1001 | tee serial intermediate/serial; |
Note |
---|
In each openssl.cnf modify dir to match their respective absolute paths (pwd will show your current working directory) |
.Root CA
First we want to create a private key and root CA
...