killing a port on macos
30 March 2022


You can find out what is running on a specific port by running the command lsof -i
with the port number, :<PortNumber>
.
01sudo lsof -i :<PortNumber>0203kill -9 <PID>typescript
30 March 2022
You can find out what is running on a specific port by running the command lsof -i
with the port number, :<PortNumber>
.
01sudo lsof -i :<PortNumber>0203kill -9 <PID>typescript