Apache Stop and Start



Stop Apache

$ sudo apachectl -k stop

$ brew services stop httpd


Start Apache

$ sudo apachectl -k start

$ brew services start httpd


Restart Apache

$ brew services start httpd

$ sudo apachectl -k graceful


Source :

https://httpd.apache.org/docs/2.4/stopping.html

Comments