일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- InfluxDB
- c3 step graph
- 정규식 활용
- python subprocess
- python os
- 정규식 컴파일
- influxdb 설치
- snmp test
- centos pyhon 설치
- gcc 업데이트
- 백준
- telegraf
- regex_search
- 정규식 문자열 출력
- 1697
- c3 초
- CentOS7
- snmp
- c++ 정규식
- grafana dashboard
- c3 second
- c3 축 없애기
- subporcess path
- g++ 업데이트
- c3 축 가리기
- selinux port 등록
- linux시간으로 변경
- semanage
- python popen
- gcc regex
- Today
- Total
목록잡지식 (3)
리셋 되지 말자
$ docker run -d -p 5674:5672 rabbitmq dc8f5cff33dc85db90e80a51f7d74dd6441ed49b636f0d6769567b1e1ce142a1 docker: Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:5674 -> 0.0.0.0:0: listen tcp 0.0.0.0:5674: bind: An attempt was made to access a socket in a way forbidden by its access permissions. 위와같이 포트가 안될때 cmd를 관리자 권한으로 실행 netsh interface ipv4 show excludedportrange..
netsh interface ipv4 show excludedportrange protocol=tcp cmd나 window termianl(powershell)에 이렇게 입력하면 프로토콜 tcp 포트 제외 범위 시작 포트 끝 포트 ---------- -------- 2869 2869 5620 6711 50000 50059 * * - 관리 포트 제외입니다. 이렇게 뜨는데, 5627포트 (rabbitmq)를 사용해야 해서 포트 할당이 안된다. $ docker run -d -p 5672:5672 --name rabbit ra bbitmq c85b0721aa563365340323458afdf6df8617d9c7e4fed48eb3f27d11d8c52664 docker: Error response from daem..