일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python os
- regex_search
- 정규식 활용
- snmp
- snmp test
- 백준
- c3 second
- centos pyhon 설치
- g++ 업데이트
- semanage
- gcc 업데이트
- python subprocess
- subporcess path
- InfluxDB
- gcc regex
- selinux port 등록
- c3 step graph
- grafana dashboard
- c++ 정규식
- linux시간으로 변경
- python popen
- 1697
- CentOS7
- c3 축 없애기
- telegraf
- 정규식 문자열 출력
- c3 축 가리기
- 정규식 컴파일
- influxdb 설치
- c3 초
- Today
- Total
목록Django (19)
리셋 되지 말자
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..
https://django.cowhite.com/blog/where-should-we-use-content-types-and-generic-relations-in-django/ Where should we use content types and generic relations in django? | CoWhite Software Who is this tutorial for? This tutorial assumes a basic knowledge of PYTHON and Django. Also it assumes you know how to create models, and manipulate them with basic querysets. If you are not confident about the a..
환경 구성 컨트롤 대상이 되는 리눅스 서버들에 VirtualBox, vagrant, sshpass를 설치한다. 그리고 Django가 설치되는 Controller 서버에는 파이썬을 설치한다. Ubuntu 1. virtualbox 설치 sudo apt update -y sudo apt upgrade -y sudo sh -c 'echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" >> /etc/apt/sources.list.d/virtualbox.list' wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | s..
GenericForeignKey, ContentType 필요성 RDB에서 하나의 attribute가 여러 형태의 테이블을 참조하고 싶을 때가 있다 참고자료 https://leffept.tistory.com/358 https://django.cowhite.com/blog/where-should-we-use-content-types-and-generic-relations-in-django
에러 내용 django 에서 DEBUG 옵션을 True로 둔 뒤, POST 요청을 보내면 아래와 같이 에러 내용이 출력된다. 1. 웹 브라우저에서 접속 시 403 error CSRF verification failed. Request aborted 2. django log Forbidden (Referer checking failed - https://kkjnginx.link/api/upload/ does not match any trusted origins.): /api/upload/ 문제 해결을 위한 발자취 1. 처음엔 template에 csrf_token 태그를 안넣어줬나 봤더니 이미 넣어준 상태였다. {% block content %} Upload Image {% csrf_token %} {{ f..
https://lucky516.tistory.com/2 Django에 Celery 적용하기 첫번째 https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html First steps with Django — Celery 5.0.5 documentation docs.celeryproject.org 해당 게시물은 위 주소의 사이트의 내용을 기반.. lucky516.tistory.com 프로젝트명/config/__init__.py 에 celery app을 로드하여 django 전체의 shared_task를 수집. 정말 감사합니다.
https://stackoverflow.com/questions/1308386/programmatically-saving-image-to-django-imagefield Programmatically saving image to Django ImageField Ok, I've tried about near everything and I cannot get this to work. I have a Django model with an ImageField on it I have code that downloads an image via HTTP (tested and works) The image is saved stackoverflow.com Super easy if model hasn't been crea..