전체 글 83

airflow 설치 / 설정

도커로 설치하니 메모리를 너무 많이 사용해서 간단 설치하기로 함. 1. 따라하기 파이썬 설치.. 안될 경우 추가. 1. 파이썬 설치. $$ sudo apt-cache policy python3.8 python3.8: Installed: (none) Candidate: (none) Version table: $$ sudo apt install software-properties-common $$ sudo add-apt-repository ppa:deadsnakes/ppa $$ sudo apt install python3.8 $$ python -V Python 3.8.6 $$ 2. airflow 설치 참조 : https://airflow.apache.org/docs/apache-airflow/stable/s..

System 2024.02.06

AWS ECS (Elastic Container Service)

프로비저닝 (provisioning) : IT 인프라를 생성하고 설정하는 프로세스. 프로비저닝은 사용자가 요청한 IT 자원을 사용할 수 있는 상태로 준비하는 것을 말한다. 서버 자원 프로비저닝, OS 프로비저닝, 소프트웨어 프로비저닝, 스토리지 프로비저닝, 계정 프로비저닝 등이 있다 Fargate : 서버리스 컨테이너를 실행할 수 있으므로 서버를 관리할 필요가 없다. aws fargate 는 aws에서 서버를 관리함. 서버 유지보수(보안패치, 런타임관리, 정기적인 유지보수)를 aws에서 알아서 해줌. ec2는 cpu, memory, storage 등을 직접 변경하지만, fargate를 사용하면 cpu, memory, storage 크기를 fargate가 알아서 변경해준다. 테스크 :

System 2024.01.24

mac os 에 python 설치

python 3.8.7 설치. https://www.python.org/downloads/macos/ Python Releases for macOS The official home of the Python Programming Language www.python.org pkg 파일 다운로드 및 설치 1. 이전 버전 삭제. Shift + command + G /Library/Frameworks/Python.framework 모두 삭제. 응용프로그램 안에 python 삭제. 2. python acBookPro # ~ # python3 Python 3.8.7 (v3.8.7:6503f05dd5, Dec 21 2020, 12:45:15) [Clang 6.0 (clang-600.0.57)] on darwin Typ..

System 2024.01.22