DEV Community

leroykayanda
leroykayanda

Posted on • Updated on

Creating users in airflow

Log into the webserver container and run the commands below

su airflow

airflow users create \
    --username tom \
    --firstname Tom \
    --lastname Ford \
    --role Admin \
    --email tom@example.com \
    --password 2SAX63dccFW4cmtdMrc
Enter fullscreen mode Exit fullscreen mode

airflow users list

Top comments (0)