[IntelliJ] 사용중인 Port 프로세스 종료

2024. 6. 19. 11:06Spring

에러내용

Description:

Web server failed to start. Port 8050 was already in use.

Action:

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

 

 

1. 포트를 사용 중인 프로세스 확인

lsof -i tcp:8050

2. 해당 PID 종료

sudo kill -9 69673