My apache80 port is occupied
I would like to ask if this is occupied and how to turn it off in mac system
大家讲道理2017-06-15 09:24:17
1. Terminal execution (Ni’s output may be different from mine, that’s okay. You can’t see port 1024 without sudo)
sudo lsof -i:80
2. Find the process, then
sudo kill -9 202
sudo kill -9 53
曾经蜡笔没有小新2017-06-15 09:24:17
Two ways to check:
1. netstat -anl | grep "80"
2.lsof -i:80
Then kill it