Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- preemption #
- Value too long for column
- taint
- tolerated
- 개성국밥
- 달인막창
- PytestPluginManager
- JanusWebRTCServer
- 코루틴 빌더
- 겨울 부산
- 오블완
- 깡돼후
- 티스토리챌린지
- pytest
- python
- table not found
- terminal
- JanusGateway
- vfr video
- VARCHAR (1)
- 코루틴 컨텍스트
- Spring Batch
- addhooks
- JanusWebRTCGateway
- JanusWebRTC
- PersistenceContext
- 자원부족
- mp4fpsmod
- kotlin
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
Archives
너와 나의 스토리
"Web server failed to start. Port 8080 was already in use." 문제 해결 (port를 바꿔도 계속 같은 에러가 뜬다면) 본문
개발
"Web server failed to start. Port 8080 was already in use." 문제 해결 (port를 바꿔도 계속 같은 에러가 뜬다면)
노는게제일좋아! 2020. 5. 14. 12:36반응형
Action:
"Identify and stop the process that's listening on port 8081 or configure this application to listen on another port."
이라고 뜨니, 한 번 8081 port를 리스닝하는 프로세스를 죽여보자!
1. 해당 포트 번호를 사용 중인 프로세스 찾기
- $ netstat -tnlp | grep "port 번호"
- Mac OS에서 위 명령어를 입력하면 "netstat: option requires an argument -- p"라는 에러가 발생할 것이다.
- 즉, Mac에서는 명령어가 좀 다르다.
- $ netstat -p tcp -van | grep LISTEN | grep "port 번호"
2. 해당 프로세스 죽이기
- $ kill -9 "process ID"
반응형
'개발' 카테고리의 다른 글
Django 시작하기! (0) | 2020.10.31 |
---|---|
REST API (0) | 2020.08.22 |
[AWS] "There is insufficient memory for the Java Runtime Environment to continue." 문제 해결 (2) | 2020.05.14 |
[AWS] Spring "Web server failed to start. Port 8080 was already in use" 문제 해결 (2) | 2020.05.13 |
[AWS] EC2에 서버 배포(spring) (1) | 2020.05.11 |
Comments