I use brew to install httpd
, I stopped the service using brew services stop httpd
then I visit locahost, I still can see apache is running?
I use brew to install httpd
, I stopped the service using brew services stop httpd
then I visit locahost, I still can see apache is running?
2
Answers
You need to give following command:
service httpd stop
You must kill the processes. As I can see from your comment you are running
httpd
as the userswww
androot
:The first column represent the
user
and the second column the process ID orPID
.Try running:
After each execution verify the services dissapear using
ps aux | grep httpd
The last proccess
private.laptop
isn’t related to your problem so no need to kill it.If your problem isn’t solved by this, maybe a daemon is executing your httpd, please refeer to this.