Horje
kill app at port Code Example
kill app at port
#To list any process listening to the port 8080:
lsof -i:8080

#To kill any process listening to the port 8080:
kill $(lsof -t -i:8080)

#or more violently:
kill -9 $(lsof -t -i:8080)




Shell

Related
stash untrack files Code Example stash untrack files Code Example
git stas hauntracked files Code Example git stas hauntracked files Code Example
how to kill a  process on a port? Code Example how to kill a process on a port? Code Example
Unit mongodb.service could not be found ubuntu Code Example Unit mongodb.service could not be found ubuntu Code Example
stop port 3000 mac Code Example stop port 3000 mac Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
22