반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- or some instances in your deployment group are experiencing problems.
- Spring Error
- aws cicd
- Jenkins
- codepipeline
- SQL
- Spring
- Python
- IntelliJ
- aws
- chartjs
- Airflow
- Kafka
- java bigdecimal
- codedeploy error
- redis
- kubeflow
- Flux
- chart.js
- codebuild
- VPN
- 도커
- bootstrap
- codedeploy
- AWS CI/CD 구축하기
- COALESCE
- JavaScript
- node
- PostgreSQL
- docker
Archives
- Today
- Total
목록Airflow (2)
Small Asteroid Blog

airflow 설치 후 webserver 를 실행하면 다음과 같은 경고를 만나게 되었다. WARNING: No user yet created, use flask fab command to do it. command창에 다음과 같은 명령어를 입력해주고 username, email, password 를 적어주면 된다. FLASK_APP=airflow.www.app flask fab create-admin user 추가 후 웹서버를 다시 실행하면 접속이 잘되는 것을 확인할 수 있다. airflow webserver -p 8080
클라우드 및 인프라/Linux
2021. 6. 17. 09:34

도커 컨테이너 생성 docker run -it -d --restart always -p 11080:8080 -e LC_ALL=C.UTF-8 -v /home/bsh/docker-temp/airflow:/home/share --name airflow ubuntu:18.04 컨테이너 접속 docker exec -it airflow bash 설치 후 실행 Miniconda3-latest-Linux-x86_64.sh sh Miniconda3-latest-Linux-x86_64.sh docker restart 후 다시 접속한다 gcc를 설치해야한다. apt-get update apt-get install gcc apt-get install nano 그 후 conda를 업데이트하고 airflow를 설치해준다. con..
클라우드 및 인프라/Linux
2021. 6. 16. 18:07