Saturday, October 7, 2017

Kill port on windows and linux

On Windows:
step 1:Run command-line as an Administrator.
step 2: netstat -ano | findstr :yourPortNumber
step 3: taskkill /PID typeyourPIDhere /F

On Linux:
step 1: open terminal at root user
step 2: fuser -k portnumber/tcp


1 comment:

SOLID-Design-Principles

SOLID-Design-Principles The SOLID principles are fundamental to designing effective, maintainable, object-oriented systems. Whether you...