Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- cross parameter
- 이렇게살아야되나자괴감이
- 랜선아미안해
- brotli
- 코드스피츠
- i18n
- Spring
- 브로틀리
- HTTP
- 알고리즘
- 지수반등
- etag
- 클래스레벨밸리데이션
- Kotlin
- jsr303
- 지뢰찾기
- 알게뭐냐
- jsr380
- 워드프레스
- cache-control
- 개미수열
- 리얼월드HTTP
- 스프링
- kotliln
- LastModified
Archives
- Today
- Total
취미개발 블로그와 마음수양
윈도우10 hyperv 포트점유, 인텔리제이 에러 등등 시 수정사항 본문
@veqryn the workaround worked for me, the steps are:
-
Disable hyper-v (which will required a couple of restarts)
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V -
When you finish all the required restarts, reserve the port you want so hyper-v doesn't reserve it back
netsh int ipv4 add excludedportrange protocol=tcp startport=50051 numberofports=1 -
Re-Enable hyper-V (which will require a couple of restart)
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
when your system is back, you will be able to bind to that port successfully.
github.com/docker/for-win/issues/3171#issuecomment-459205576