articleswikiproducts
RSS feed
contact
articleswikiproducts
RSS feed
contact
articleswiki
products

Made by nerdfish, development with user experience in mind.

Github
All wiki

killing a port on macos

29 March 2022

You can find out what is running on a specific port by running the command lsof -i with the port number, :<PortNumber>.

Or you can kill al processes with the following command:

sudo lsof -i :<PortNumber>

kill -9 <PID>
killall node