How can I get rid of the pass-phrase dialog at Apache startup time?
The reason this dialog pops up at startup and every re-start is that the RSA private key inside your server.key file is stored in encrypted format for security reasons. The pass-phrase is needed to decrypt this file, so it can be read and parsed. Removing the pass-phrase removes a layer of security from your server - proceed with caution!
1. Remove the encryption from the RSA private key (while keeping a backup copy of the original file):
$ cp server.key server.key.org
$ openssl rsa -in server.key.org -out server.key
2. Make sure the server.key file is only readable by root:
$ chmod 400 server.key
Now server.key contains an unencrypted copy of the key. If you point your server at this file, it will not prompt you for a pass-phrase. HOWEVER, if anyone gets this key they will be able to impersonate you on the net. PLEASE make sure that the permissions on this file are such that only root or the web server user can read it (preferably get your web server to start as root but run as another user, and have the key readable only by root).
As an alternative approach you can use the ``SSLPassPhraseDialog exec:/path/to/program'' facility. Bear in mind that this is neither more nor less secure, of course.
Ну а если вкратце, то с сертификата просто снимается пароль =)
Взято с: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html#removepassphrase
Saturday, 14 February 2009
Убрать запрос пароля от приватного сертификата в Apache
Subscribe to:
Post Comments
(
Atom
)
Идиотизм...
ReplyDeleteС чего бы? Для сервера норм. Или вы хотите перевводить пароль при каждом перезапуске вебсервера? Ну это, конечно, безопасно, но оправдано ли?
Delete