

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
'SOMEDAY > NEED' 카테고리의 다른 글
[ERROR] org.springframework.security.access.AccessDeniedException: can not find principal (0) | 2024.08.16 |
---|---|
[ngrok] ngrok 다운로드 및 실행 (0) | 2024.08.14 |
[DOCKER] Ubuntu 도커 Jenkins (젠킨스) 버전별 설치 명령어 (0) | 2024.08.14 |
[ERROR] cannot add or update a child row: a foreign key constraint fails (0) | 2024.08.04 |
[ERROR] Web server failed to start. Port 8080 was already in use. (0) | 2024.07.09 |