Install, Start, Stop, Remove Apache Terminal Commands For Linux Ubuntu
			 👤 By webune | 📆 
		
	To manage apache in your linux ubuntu, here are some helpful terminal commands to help you if you are an administrator.
INSTALL, ENABLE, START.
- Install apache server
sudo apt install apache2 - Enable apache at startup initial boot time
sudo systemctl enable apache2 - Start and enable apache2
sudosystemctl start apache2 
REMOVE, DISABLE, STOP
- Remove apache server
sudo apt remove apache2 - Disable apache at startup initial boot time 
sudo systemctl disable apache2 - Stop apache2
sudosystemctl stop apache2 
CHECK STATUS
- Check if apache is running
sudosystemctl status apache2