본문 바로가기
LEARN/ERROR

[ERROR] Identify and stop the process that's listening on port 8081 or configure this application to listen on another port.

by 아이엠제니 2024. 8. 19.

 


 

 

 

Identify and stop the process that's listening on port 8081 
or configure this application to listen on another port.

 

  • port 8081을 사용하고 있는 process가 있을 경우 해당 메시지 뜸
  • 해당 port를 사용 중인 process를 확인하고 종료하거나, application의 port를 다른 port로 변경하라는 뜻

 

 

 

Windows에서 Port 사용 상태 확인


netstat -ano | findstr :8081

 

 

taskkill /PID [PID] /F
taskkill /PID 25868 /F

`25868` 이라고 적혀져 있는 부분에 PID를 입력하면 된다.

 

 

PID (Process ID)
시스템 내에서 실행 중인 프로세스를 구분하기 위한 고유한 번호

 

 

 

 

 

 

300x250