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 |
Tags
- tolerated
- Spring Batch
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- taint
- 겨울 부산
- 오블완
- PersistenceContext
- VARCHAR (1)
- mp4fpsmod
- 티스토리챌린지
- 코루틴 컨텍스트
- 코루틴 빌더
- 달인막창
- JanusWebRTCGateway
- preemption #
- 개성국밥
- JanusWebRTCServer
- python
- vfr video
- 깡돼후
- JanusWebRTC
- kotlin
- pytest
- 자원부족
- JanusGateway
- k8s #kubernetes #쿠버네티스
- Value too long for column
- terminal
- table not found
- PytestPluginManager
Archives
목록Port 8080 was already in use (1)
너와 나의 스토리
"Web server failed to start. Port 8080 was already in use." 문제 해결 (port를 바꿔도 계속 같은 에러가 뜬다면)
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. 해당 프로세스 죽이기 ..
개발
2020. 5. 14. 12:36