Contents Use the Open SSH client key generation utility Generate a key pair with a default name and location Convert the Key(s) Create SSH Tunnel with putty Use the Open SSH client key generation utility Use the Open SSH key generation utility to generate a key pair and convert the public key to the proper…
Category: Linux
SSL Certificate Creation
SSL Certificates are used in a number of areas for securing communications between web servers, email clients, etc. Listed below are the steps to go through to generate an SSL Certificate. For this example, we’ll use Apache web Server cd /etc/apache2 mkdir ssl cd ssl openssl genrsa -out ssl.key 2048 (choose a pass phrase) ..#…