Horje
how to kill a  process on a port? Code Example
how to kill a process on a 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)
kill process on port windows
netstat -ano | findstr "PORT_NUMBER"

taskkill /PID PORT_NUMBER /f




Shell

Related
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
remove steam from ubuntu Code Example remove steam from ubuntu Code Example
anaconda opencv install Code Example anaconda opencv install Code Example
conda cv2 Code Example conda cv2 Code Example

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