Cause :
Another process already uses 80 port and Apache cannot bind to it.
Resolution :
Evaluate which process(es) may be using port 80 with the following commands:
fuser -n tcp 80
ps aux | grep PID
// PID equal to the ports listed with the fuser command.
OR
ss -plnt sport eq :80
Then, kill of the offending processes.
Please do contact us at [email protected] if you require any further assistance.