Check which process is using port 80 in OSX

You need to run these commands as root to show other users’ processes, for example:
sudo lsof -i ':80'
If you want to close any particular process you can kill the process by executing below command
sudo kill processid

Site Footer