stop apache from asking for SSL password each restart [duplicate]

You want to remove the passphrase from a key file. Run this:

openssl rsa -in key.pem -out newkey.pem

Be aware that this means that anyone with physical access to the server can copy (and thereby abuse) the key.

Leave a Comment