Report this

What is the reason for this report?

can't install apache2

Posted on November 14, 2019

I want to install SSL Certificate but I can’t install apache2.

when I type

sudo apt-get install apache2

Reading package lists… Done Building dependency tree
Reading state information… Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: apache2 : Depends: apache2-bin (= 2.4.41-1+ubuntu16.04.1+deb.sury.org+5) but it is not installable E: Unable to correct problems, you have held broken packages.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello @cloud474606,

Have you tried updating your system? You’ll need to

sudo apt-get update

Once it finishes, do

sudo apt-get upgrade

Then try to install Apache again. If it fails, you’ll need to go back to a state there all dependencies are satisfied:

 sudo apt-get install -f

Try to remove all Apache stuff:

sudo dpkg --purge --force-depends "apache*"

Reinstall now all necessary dependencies:

 sudo apt-get install -f

Now you can give the Apache installation a new try. If the problem persists, please provide more information.

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.