Versions Compared

Key

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

...

Once OpenSSL is installed, enter the following commands (changing <openssl_dir> to the proper path for the OpenSSL installation directory) at the command line to generate the certificate key. The example uses 1024 bit encryption; if required, you can increase to your preferred value: 

Code Block
cd <openssl_dir>/bin 
openssl genrsa -out uptime_ssl_server.key 4096
openssl req -x509 -sha512 -nodes -newkey rsa:4096 -keyout domain.key -out uptime_ssl_server.crt

...