I installed Apache 2 using:
sudo apt-get install Apache2
Then tried to start it with:
sudo service Apache2 start
But ended up with:
Failed to start Apache2.service: Unit Apache2.service not found.
Any help? Thx
I installed Apache 2 using:
sudo apt-get install Apache2
Then tried to start it with:
sudo service Apache2 start
But ended up with:
Failed to start Apache2.service: Unit Apache2.service not found.
Any help? Thx
Remember that linux/unix is case-sensitive, so
apache2
is not the same asApache2
Try
Then it should start right after you install it
If stopped
The problem is the upper_case letter being used on your command.
USE: sudo service apache2 status NOT: sudo service Apache2 status