Advertisement
rodrigosantosbr

Instalação Apache Airflow no Ubuntu 22.04

Sep 13th, 2023 (edited)
1,365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | None | 0 0
  1. ```
  2. sudo apt install python3-pip
  3. sudo pip install apache-airflow
  4. cd airflow
  5. mkdir dags
  6. airflow users create --username admin --pasword <pass> --firstname <fn> --lastname <ln> --role Admin --email <the_email@domain.com>
  7. airflow users list
  8. airflow webserver
  9. airflow scheduler
  10. ```
  11.  
  12. http://localhost:8080
  13.  
  14.  
  15. If installed with sudo, it will be placed in /usr/local/bin/.
  16. Without sudo, it will be placed in the ~/.local/bin/ folder.
  17. This folder will not be added to the PATH environment variable automatically.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement