[IntelliJ] 사용중인 Port 프로세스 종료
2024. 6. 19. 11:06ㆍSpring
에러내용
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
'Spring' 카테고리의 다른 글
[Batch] Spring batch Job API 호출 (0) | 2024.06.27 |
---|---|
[Spring] Kafka consumer multiple group 설정 (0) | 2024.06.20 |
[SpringBoot] 테스트 환경 구축 - MockUser (0) | 2024.04.09 |
[SpringBoot] 테스트 환경 구축(MySQL docker) (1) | 2024.03.22 |
FeignClient를 이용한 API 호출(HttpClient) (0) | 2024.03.13 |