Notice
Recent Posts
Recent Comments
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
- lastIndexOf()
- 객체의키값만 찾기
- 단어 제거
- ...점점점문법
- 레디스 확인
- js 문자열을 문자배열로
- 중복된 단어
- 깃 토큰 만료
- 제로베이스
- 중첩배열
- 배엘에서 스왑
- 문자열 중복
- sql 문자열 패턴 검색
- indexOf()
- 아래로펼치기
- ubuntu타임존
- 재귀스왑
- 코딩 어?
- 중복 문자열
- 문자열순서바꾸기
- 프론트엔드 스쿨
- 스프링 데이타 JPA
- 객체의 밸류값만 찾기
- @Moditying @Query
- 시퀄 문법
- 중복문자제거
- 5.3.8 Modifying Queries
- 우분투 시간 변경
- 중첩배열평탄화
- 중복단어제거
Archives
- Today
- Total
코딩기록
MySQL 에러) docker: Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:3306 -> 0.0.0.0:0: listen tcp 0.0.0.0:3306: bind: Only one usage of eachsocket address (protocol/network address/port) is normally permitted, 윈도우.. 본문
카테고리 없음
MySQL 에러) docker: Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:3306 -> 0.0.0.0:0: listen tcp 0.0.0.0:3306: bind: Only one usage of eachsocket address (protocol/network address/port) is normally permitted, 윈도우..
뽀짝코딩 2022. 6. 6. 17:35728x90
1. 특정포트가 열려있는지 확인
- netstat -nao | findstr "포트"
2. 열려 있는 포트의 PID 확인
- netstat -nao | findstr "포트"
3. PID 찾기
- tasklist | findstr "PID번호"
4. 프로세스 죽이기
- taskkill /f /pid "PID번호"
반응형
Comments