How do I stop httpd running under Mac OS X (10.11) El Capitan Server?

56,020

Solution 1

The apple proxy service is the service that grabs ports 80 and 443, so you need to stop that one.

sudo launchctl unload -w /Applications/Server.app/Contents/ServerRoot/System/Library/LaunchDaemons/com.apple.serviceproxy.plist

Solution 2

You can stop that with command:

sudo apachectl stop

Solution 3

This command should kill them all:

sudo killall httpd

They will start again on next boot.

Solution 4

In case others are reaching this question by searching for httpd or port 80 but don't have the Server.app running, this is the solution for macOS Monterey 12.x and later:

sudo launchctl bootout system/org.apache.httpd
Share:
56,020

Related videos on Youtube

Chris
Author by

Chris

Oh Captain, My Captain: "No matter what anybody tells you, words and ideas can change the world."

Updated on September 18, 2022

Comments

  • Chris
    Chris almost 2 years

    I am using OS X El Capitan with the Server (app) configured to allow me VPN access to my home network. Unfortunately, the Server app has decided to start a bunch of httpd processes, which are now listening on ports 80, 443 and others, even though the Server settings for Websites is OFF and no services should be started on these ports.

    I do not want or need these services active and would like httpd to be shut down (or not start to begin with). Unfortunately, I can neither kill those processes (they just restart straight away) nor can I control them through launchctl.

    sudo lsof -i :80
    httpd   422 root    5u  IPv6 0x7...     0t0  TCP *:http (LISTEN)
    httpd   425 _www    5u  IPv6 0x7...     0t0  TCP *:http (LISTEN)
    
    ps u 422
    USER   PID  %CPU %MEM      VSZ    RSS   TT  STAT STARTED      TIME COMMAND
    root   422   0.0  0.0  2457156   6136   ??  Ss    5:55PM   0:00.07 /usr/sbin/httpd -D FOREGROUND -f /Library/Server/Web/Config/Proxy/apache_serviceproxy.conf -E /private/var/log
    

    When trying:

    sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
    
    /System/Library/LaunchDaemons/org.apache.httpd.plist: Could not find specified service
    

    So, how do I terminate those processes and free up those ports?

    I know there is a config file for the apache server here: /Library/Server/Web/Config/Proxy/apache_serviceproxy.conf

    I can remove the following lines to unblock those ports, but the httpd processes are still running.

    listen 80
    listen 443
    
  • Chris
    Chris about 8 years
    I didn't downvote either, but it may have to do with the fact that I mentioned that there is no point in killing the processes, since they are being restarted automatically.
  • Kosmonaut
    Kosmonaut almost 8 years
    This turned out to be exactly the solution for me. "sudo apachectl stop" just gave the same error as launchctl.
  • Ray Foss
    Ray Foss over 5 years
    surprisingly, after trying every other method... this one worked... for some reason the daemon stayed alive after being unloaded and killed every other way, this one cleaned it up
  • Abdessamad Idrissi
    Abdessamad Idrissi about 4 years
    Tested and works on macOS Catalina 10.15.3
  • Admin
    Admin almost 2 years
    That was it. Thanks. It was painful.