apache [warn] module ssl_module is already loaded, skipping (Solved)

by

in
# httpd -t
[Fri Jun 08 11:12:19 2012] [warn] module ssl_module is already loaded, skipping
Syntax OK

This happens, because ssl module is enabled in more than 1 place:

# grep ssl_module -rI /etc/httpd/*
conf/httpd.conf:LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so
conf.d/ssl.conf:LoadModule ssl_module modules/mod_ssl.so

we load all needed modules in one place – /etc/httpd/conf/httpd.conf.
So we can safely comment out in /etc/httpd/conf.d/ssl.conf file.

edit /etc/httpd/conf.d/ssl.conf file
and comment out this line:

#LoadModule ssl_module modules/mod_ssl.so

save file, and problem fixed:

# httpd -t
Syntax OK

Comments

5 responses to “apache [warn] module ssl_module is already loaded, skipping (Solved)”

  1.  Avatar

    Thank you

  2. You sir, just saved my skin.

  3. Thank you so much!

  4. […] hatayı araştırırken tekrar stackoverflow’dan bu çözümü buldum ama yapamadım ve Servis sağlayıcım Data TR hızlıca çözüme ulaştırdı sağolsun […]

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.