Check port occupancy command
sudo lsof -i :9000
After the colon is the port number you need to check.
End the process occupying the current port number
There is a column named PID in the header. This column indicates that the current port number is occupied. Port process.
sudo kill -9 27374
The above is the detailed content of Check the port usage on mac and end the process. For more information, please follow other related articles on the PHP Chinese website!