Image may be NSFW.
Clik here to view.
I tried installing mod_ssl,I used this command apt-get install mod_ssl
to install but I got an error saying unable to locate package mod_ssl
.
After executing the above command, I got below output
Reading package list.. Done
Build dependency tree
Reading state information done..
E:unable to locate package mod_ssl
How do I resolve it ?
Image may be NSFW.
Clik here to view.
Run the command dpkg -S mod_ssl.so
. Chances are that it will display something like:
apache2.2-common: /usr/lib/apache2/modules/mod_ssl.so
It means that mod_ssl
is already installed on your system, as it does not come in a separate package, but it is bundled in apache2.2-common
. Run
a2enmod ssl
to enable it, if it is not already enabled.
Check more discussion of this question.