mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-18 18:14:31 -04:00
5 lines
241 B
Bash
5 lines
241 B
Bash
# Easily kill process on port because sometimes nodemon fails to reboot
|
|
kill -9 $(lsof -t -i tcp:5000) &
|
|
kill -9 $(lsof -t -i tcp:3001) & # if running default for MacOS Monterey
|
|
kill -9 $(lsof -t -i tcp:3355) &
|
|
kill -9 $(lsof -t -i tcp:8288) |