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
- PersistenceContext
- 티스토리챌린지
- JanusWebRTC
- pytest
- 자원부족
- Spring Batch
- kotlin
- vfr video
- terminal
- JanusGateway
- JanusWebRTCGateway
- 개성국밥
- PytestPluginManager
- 코루틴 빌더
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- Value too long for column
- VARCHAR (1)
- table not found
- taint
- k8s #kubernetes #쿠버네티스
- 겨울 부산
- 오블완
- 코루틴 컨텍스트
- tolerated
- mp4fpsmod
- 깡돼후
- preemption #
- python
- 달인막창
- JanusWebRTCServer
Archives
목록netstat: option requires an argument -- p (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