일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- configmap
- golang
- VSCode
- android studio
- Java
- aws
- Flutter
- wireshark
- dart
- HLS
- ebpf
- docker
- Pod
- RTMP
- Android
- aws cli
- Windows10
- Shell script
- Kubernetes
- nginx-media-server
- 행정구역분류
- Sysinternals
- ffmpeg
- macos
- namespace
- kubectl
- service
- spring cloud config
- Python
- deployment
- Today
- Total
목록전체 글 (120)
woonizzooni
dh.shim님이 팁이라고 알려줘서, 기념(?)삼아 적어본다. > 실습 방법#1 : tcp contains "myword"
MacOS나 Linux에서 친숙한(?) bash, zsh등에서 보통 아래와 같이 사용했는데.. (파일명 : a.sh) #!/bin/sh declare -i count=1 a=(abc 123 def) b=(ghi 456 kkk) echo ">>> print a" for item in ${a[@]} do printf " %d:%s\n" $count $item count+=1 done count=1 c=(${a[@]} ${b[@]}) echo ">>> print all" for item in "${c[@]}" do printf " %d:%s\n" $count $item count+=1 done 실행결과 >>> print a 1:abc 2:123 3:def >>> print all 1:abc 2:123 3:de..
docker build 옵션 중 --progress 사용 (plain을 사용하자) foo@bar:~/$ docker build --help Usage: docker build [OPTIONS] PATH | URL | - Build an image from a Dockerfile Options: ... --progress string Set type of progress output (auto, plain, tty). Use plain to show container output (default "auto") ... example) docker build -f Dockerfile --progress=plain -t ... foo@bar:~/$ docker build -f Dockerfile --progre..
Swagger UI의 index.html을 참고해서, https://github.com/swagger-api/swagger-ui/blob/master/dist/index.html 아래와 같이 작성하니, 일단(?) 된다... $ npm install swagger-ui ./src/views/swagger/swagger.vue
[참고] Windows패키지 매니저 chocolatey 설치 https://kubernetes.io/ko/docs/tasks/tools/install-kubectl-windows/ https://docs.aws.amazon.com/ko_kr/eks/latest/userguide/install-aws-iam-authenticator.html choco로 설치 진행 o kubectl - win+s > cmd > 화면상 '명령프롬프트'에 우측 클릭 > '관리자 권한으로 실행' - 설치 C:\WINDOWS\system32>choco install kubernetes-cli Chocolatey v0.10.15 Installing the following packages: kubernetes-cli By insta..
[참고] AWS CLI구성 (MacOS) 맥의 경우와 차이 없으나, MSI 설치 관리자가 아닌 python & pip로 설치할 경우 나처럼 지저분한(?) 파이썬 상태 보유자를 위한 글. o 설치 - 참고 : https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/install-windows.html - 설치 방법 중 python & pip를 이용해서 설치 - python 설치 참고 : [VSCode] Python가상 실행 환경 구성 (Windows환경에서) * 이군데 저군데 너무 많이 python이 분포(?)되어 있어서 아래를 PATH 최상위로 잡아둠 * C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python..
아래와 같은 에러 발생시 app.jinja_options["extensions"].append("jinja2.ext.do") KeyError: 'extensions' $ .venv/bin/locust -f service.py --host="http://localhost:8080" -P 8088 Traceback (most recent call last): File "/Users/.../tools/kk/.venv/bin/locust", line 8, in sys.exit(main()) File "/Users/.../tools/kk/.venv/lib/python3.9/site-packages/locust/main.py", line 286, in main web_ui = environment.create_we..
sqs.SQS.GetQueueUr("queue-name") 실행 에러 status code 400 the specified queue does not exist or you do not have access to it 에러 메시지 내용만으로는 1) queue-name이 진짜로 없거나 2) 엑세스 권한이 없거나 이군. 실제 큐가 있었으니 난 엑세스 정책을 변경함. 대충 *로... 그랬더니 해결~ 변경 전 변경 후 { "Version": "yyyy-mm-dd", "Id": "*****", "Statement": [ { "Sid": "*****", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::{id}:root" }, "Action": "SQS:*", "Re..