특정 port를 사용하고 있는 앱 종료 1. 특정 port를 사용하고 있는 앱 찾기 netstat -ano | findstr [port 번호] ex) netstat -ano | findstr 7788 2. 해당 Port를 사용하고 있는 앱을 pid 번호로 kill 하기 taskkill /f /pid [pid number] ex) taskkill /f /pid 17463 Programing/Debug NOTE 2021.07.20