
## To find what's running on Port#

```
# macos
sudo lsof -i :<PortNumber>
# should return a PID as first number
kill -9 <PID>
```
