Apache is no longer starting after ssl_module enabled?

0

Apache used to work normally. However, when I was trying to set up my intranet for sending emails, I was directed to enable the Apache ssl_module module. It was only clicking on that Apache crashed and did not come back. When I try to click again to uncheck, I get this error:

Ihavetriedtostartwithservices.msc,buttonoavail.Ididnotchangethepagehttpd.conf,soitisirrelevanttopostthecodehere,sinceitwasworkingbeforewiththesamecode.Whatcouldbetheproblem?

Incidentally,theproblemisnootherappisusingthesameport.Whencheckingport80usedbyapache,itisnoticedthatitisnotusedbyanyapplication:

I need to fix this urgently!

    
asked by anonymous 05.09.2018 / 13:41

1 answer

0

I will share a solution I found for apache not starting after ssl_module is enabled.

  • Verify that ssl_module is marked as enabled within the options Apache in Wamp .
  • Click ssl_module as if you would disable it.

    • The following error message should appear:
  • Open the httpd.conf file by Apache settings in the menu Wamp or by the Apache folder inside the Local Disk.

  • Look for this line inside the file: LoadModule ssl_module modules/mod_ssl.so .
  • When you find add a game of the old (#) at the beginning of it, so that it looks like this:
    • #LoadModule ssl_module modules/mod_ssl.so
  • Save the file and restart Wamp .
  • Try to open your localhost project and confirm that Wamp is running normally.
      

    Note: It may not work for all cases for some reason.   change you might have made earlier in the modules.

  • 05.09.2018 / 14:43