LoginSignup
7

More than 5 years have passed since last update.

【Apache】エラー: Invalid command 'SSLPassPhraseDialog', perhaps misspelled or defined by a module not included in the server configuration

Posted at

【Apache】エラー: Invalid command 'SSLPassPhraseDialog', perhaps misspelled or defined by a module not included in the server configuration

Apacheの起動で上記のエラーが出力された時の対応メモ

・httpd.confにmod_ssl.so読み込む設定をしているか確認
LoadModule ssl_module modules/mod_ssl.so

設定してあった :expressionless:

・そもそもmod_ssl.soがあるかコマンド叩いて確認
# find /etc/httpd/modules/ -name mod_ssl.so
ない :scream:

・yumでインストール
# yum -y install mod24_ssl
〜〜省略〜〜
Complete!

・mod_ssl.soがインストールされてるか再度コマンド叩いて確認
# find /etc/httpd/modules/ -name mod_ssl.so
/etc/httpd/modules/mod_ssl.so

あった :joy:

・起動してみる
# /sbin/service httpd start
Starting httpd: [ OK ]

:tada:

ひとまず解決。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7