I enabled SSL on our Ubuntu Linux server by modifying the virtual host file (SSLEngine on) today, and got the following error message when I tried restarting Apache:
Invalid command ‘SSLEngine’, perhaps misspelled or defined by a module not included
Nothing was misspelled in the file. Turns out mod_ssl was not enabled on the server. mod_ssl module comes with the apache2-common package, however, is not enabled by default. Run the following command to enable it:
sudo a2enmod ssl
and restart apache
sudo /etc/init.d/apache2 restart
thanks!
just what i was looking for. thanks!
Just a small note that the a2enmod command also works exactly the same on Debian.
Thank you, this helped me out just now!
That was golden!
All other posts lead me to Direct Admin (and a lot of different solutions), but it was as simple as starting the service on my debian installation!
Thanks, worked perfect on Debian 🙂
Thanks! Worked like a charm. 🙂
Thanks a lot!!!!!
Same Thing on Suse:-)