[Spring] Port 8080 was already in use.
스프링에서 Run을 했는데... 대충 이런 상황이 되었다...
오류 메세지 :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-01-04 06:04:25.874 ERROR 17108 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
Disconnected from the target VM, address: '127.0.0.1:58252', transport: 'socket'
Process finished with exit code 0
|
cs |
해결 방법
: 해당 포트를 사용하고 있는 프로세스를 킬하면 된다! (Windows 기준, 우분투/리눅스는 맨 아래에 있는 링크 참고)
cmd로 이동하여 ('Window' + 'R'하고 cmd 검색하면 빠르게 이동 가능)
- $ netstat -ano | findstr 8080
Port 8080을 사용하는 프로세스의 PID를 찾는다. (여기서 11860)
- $ taskkill /pid 11860 /f
11860 대신 본인 cmd 에서 찾은 pid를 입력하면 된다.
- Recompile 한다.
- localhost:8080/어쩌구.html 접속
성공!
참고 자료 : stackoverflow.com/questions/34253779/tomcat-server-error-port-8080-already-in-use
'etc > Spring' 카테고리의 다른 글
[Spring] MVC 와 템플릿 엔진 (0) | 2021.01.12 |
---|---|
[Spring] 정적 컨텐츠 (.html) 가져오기 (0) | 2021.01.04 |
[Spring] 프로젝트 빌드하고 실행하기 (0) | 2021.01.04 |
[Spring] spring-boot-devtools 라이브러리 추가하기 (0) | 2021.01.03 |
[Spring] Welcome Page 만들기 (0) | 2021.01.03 |
댓글
이 글 공유하기
다른 글
-
[Spring] MVC 와 템플릿 엔진
[Spring] MVC 와 템플릿 엔진
2021.01.12 -
[Spring] 정적 컨텐츠 (.html) 가져오기
[Spring] 정적 컨텐츠 (.html) 가져오기
2021.01.04 -
[Spring] 프로젝트 빌드하고 실행하기
[Spring] 프로젝트 빌드하고 실행하기
2021.01.04 -
[Spring] spring-boot-devtools 라이브러리 추가하기
[Spring] spring-boot-devtools 라이브러리 추가하기
2021.01.03