Kill Apache

[Solved] Kill Apache | Shell - Code Explorer | yomemimo.com
Question : how to kill apache process in linux

Answered by : angry-ape-dh56yr6x11ux

sudo netstat -nap | grep :80
You’ll see apache2 and there is 3–4 digit numbers before it, mine is 980
sudo kill [number]

Source : | Last Update : Tue, 20 Oct 20

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 : how to stop a web server linux

Answered by : adriaan

# how to stop a web server linux
sudo service apache2 stop

Source : | Last Update : Sun, 19 Apr 20

Question : kill apache

Answered by : jittery-jackal-lbia97aptgto

sudo apachectl -k graceful

Source : | Last Update : Fri, 11 Mar 22

Answers related to kill apache

Code Explorer Popular Question For Shell