일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- subporcess path
- snmp test
- InfluxDB
- influxdb 설치
- 1697
- c3 second
- regex_search
- c3 축 가리기
- 정규식 활용
- semanage
- linux시간으로 변경
- c++ 정규식
- telegraf
- c3 초
- gcc 업데이트
- centos pyhon 설치
- g++ 업데이트
- c3 축 없애기
- python popen
- CentOS7
- gcc regex
- 정규식 컴파일
- c3 step graph
- grafana dashboard
- 정규식 문자열 출력
- python subprocess
- snmp
- python os
- selinux port 등록
- 백준
- Today
- Total
목록전체 글 (560)
리셋 되지 말자
설치 helm repo add weaviate https://weaviate.github.io/weaviate-helm helm pull weaviate/weaviate tar xvf weaviate-16.8.7.tgz values.yaml 변경내용 diff weaviate/values.yaml values.yaml 113c113 type: ClusterIP 124c124 enabled: true 131c131 type: ClusterIP 설치 helm install weaviate weaviate/ -f values.yaml
최대공약수, 최대공배수 - 관련문제 백준 2609import matha, b = map(int, input().split())print(math.gcd(a,b))print(math.lcm(a,b)) 입력속도 빠르게import sysn = int(sys.stdin.readline()) combinations, permutations, product, combinations_with_replacementfrom itertools import combinations, permutationsn, m = map(int, input().split())arr = list(map(int, input().split()))max_sum = 0for c in combinations(arr, 3)..
https://not-to-be-reset.tistory.com/343 글에 작성한 대로, 모델 다운로드 링크가 만료되고 코드가 동작하지 않아서 다시 포스팅 합니다. 단일 인스턴스 부터 쿠버네티스 클러스터까지 확장해 나가려고 합니다. 개발환경 2024. 3. 2 기준 wsl 윈도우에서 진행 github 주소 https://github.com/kyeongjun-dev/csapi 브랜치: https://github.com/kyeongjun-dev/csapi/tree/minio 해당 글의 코드는 github 코드랑 다를수 있으니, 오류 발생시 깃허브 코드 확인 필수 Minio 추가 django 컨테이너와 worker 컨테이너를 동일한 volume으로 묶는것은 서비스 분리가 되지 않아서, aws s3와 호환되는..
개요 python 컨테이너와 minio 컨테이너를 docekr compose로 생성하고, 간단한 파일을 업로드 해봅니다 docker compose 작성 python, minio 컨테이너를 생성합니다 version: "3" services: python: image: python:3.10-slim command: sleep infinity minio: image: minio/minio:latest command: server /data --console-address ":9001" volumes: - minio_volume:/data environment: - MINIO_ROOT_USER=minioroot - MINIO_ROOT_PASSWORD=minioroot ports: - "9000:9000" - "..
$ 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..
Tempo로 trace 전송 Tempo는 이미 구성되어 있다고 가정 후, 진행합니다 config/wsgi.py 수정 - 수정 전 ( console exporter) import os from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings') application = get_wsgi_application() from django.http import HttpResponse from opentelemetry import trace from opentelemetry.sdk.trace import TracerProvider from opentelemetry.sdk..
django 실행 python 및 pip 버전 python --version Python 3.10.8 pip --version pip 22.2.2 from /home/ubuntu/Django/venv-test/lib/python3.10/site-packages/pip (python 3.10) 패키지 설치 pip install django pip install opentelemetry-instrumentation pip install opentelemetry-instrumentation-django pip install opentelemetry-sdk pip install opentelemetry-exporter-otlp django 프로젝트 생성 django-admin startproject config..
Grafana, Tempo 설치 - docker desktop 제일 미니멈 설정으로 grafana라는 네임스페이스에 설치 helm repo add grafana https://grafana.github.io/helm-charts helm repo update kubectl create ns grafana helm install grafana/grafana -n grafana helm install grafana/tempo -n grafana Spring boot앱 배포 먼저 spring boot 컨테이너에 설정하는 환경변수는 아래 yaml 파일과 같다 apiVersion: apps/v1 kind: Deployment metadata: name: springboot spec: selector: matchL..