Wednesday, 4 January 2017

[Windows] Find a process using certain port (특정 Port 사용 중인 프로세스 찾기)



1. Check port is in use (포트 사용 중인지 확인)


netstat -ano | findstr ":[PORT_NUMBER]"


2. Find process using the port (해당 포트 사용 중인 프로세스 확인)

tasklist | findstr "[PID]"

No comments:

Post a Comment