Start Apache Service

[Solved] Start Apache Service | Shell - Code Explorer | yomemimo.com
Question : How to start apache2 server

Answered by : adriaan

# Start Apache 2 server on Linux/Unix
sudo service apache2 start

Source : | Last Update : Sun, 19 Apr 20

Question : linux apache start

Answered by : murat-akmak

sudo service apache2 start
sudo service apache2 restart
sudo service apache2 stop
OR
sudo /etc/init.d/apache2 start
sudo /etc/init.d/apache2 restart
sudo /etc/init.d/apache2 stop

Source : | Last Update : Sat, 27 Aug 22

Question : start apache service

Answered by : pako-diale

systemctl status apache2

Source : | Last Update : Tue, 25 Aug 20

Question : starting apache2 server

Answered by : ekene-umegakwe

$ sudo systemctl stop apache2
$ sudo systemctl start apache2

Source : https://www.poftut.com/how-to-start-stop-restart-and-manage-apache-web-server-in-linux/ | Last Update : Mon, 02 May 22

Question : start apache service

Answered by : arjun-nurdin

sudo systemctl start apache2

Source : https://askubuntu.com/questions/938761/this-site-cant-be-reached-when-using-virtual-host | Last Update : Fri, 13 Aug 21

Answers related to start apache service

Code Explorer Popular Question For Shell