While having an encrypted key is a good thing for an SSL web server, it just doens't work out so well. When your web server restarts, it hangs during startup asking for a passphrase for all the SSL certs.
To remove the requirement to enter a password you can follow these steps.
First backup you key
# cp <a href="http://www.domain.key" title="www.domain.key">www.domain.key</a> www.domain.key.encrypted
Then create a plain text version
# openssl rsa -in <a href="http://www.domain.key" title="www.domain.key">www.domain.key</a> -out www.domain.key.plain
Then replace your current key with the new plain text one
# cp <a href="http://www.domain.key.plaintext" title="www.domain.key.plaintext">www.domain.key.plaintext</a> www.domain.key