Skip to content

Instantly share code, notes, and snippets.

@JohannesHoppe
Last active December 10, 2018 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohannesHoppe/6a0f833165d6517c9ab7a38d06a990d2 to your computer and use it in GitHub Desktop.
Save JohannesHoppe/6a0f833165d6517c9ab7a38d06a990d2 to your computer and use it in GitHub Desktop.
start, stop or restart Apache from the console terminal in Mac OS X
# To start httpd:
sudo /usr/sbin/apachectl start
# To stop httpd:
sudo /usr/sbin/apachectl stop
# To restart httpd:
sudo /usr/sbin/apachectl restart
# quick start
httpd
# Kill it with fire
sudo killall httpd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment