This is just a quick post about SSL generated keys. By default, when you generate a new key file using openssl you will notice that it will ask you for a password. This is really annoying as we use this on a HTTPS webserver. Apache will ask for the SSL password every time you restart it. The steps below shows you how to get rid of this password.
Backup the original key file:
cp yourkeyfile.key yourkeyfile.passwd.key
Remove the SSL password from the key …

Read On »