Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. Create CA certificates by performing the following command:

     openssl req -nodes ×509 sha256-new - days 365 nodes -newkey rsa:2048 -x509
keyout CA.key -out CA.cert
subj "/C=IN/ST=KA/L=Bglr/0O=Infoblox/OU=Cloud/CN=*" keyout rootCA.key -out rootA.crt

2. Create a key and a certificate signing request:

     openssl regreq -batch -new -newkey rsa: 2048 -nodes -kevoutkeyout server.keykey 
out rpz.csr -subj " /C=IN/ST=KA/L=Bglr /0O=Infoblox //OU=Cloud/CN=*"

3. Create a server certificate by signing it with the CA:

     openssl x509 -req -in rpz.csr -CA rootCA.crt -CAkey rootCA.key
- CAcreateserial -out server.crt

...