DEV Community

Cover image for THE KILL PROCESS IN ESPECIFIC PORT
Reynaldo Quispe Soca
Reynaldo Quispe Soca

Posted on

THE KILL PROCESS IN ESPECIFIC PORT

  1. Open a terminal of linux and write the next command.

sudo netstat -tupln

  1. Then, Choose the procces to kill and PID. Finally write the next command:
   sudo kill -9 PID 
   #example: sudo kill -9 19993 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)