NewtoPython
NewtoPython

Reputation: 207

how to access airflow web UI in python using web browser

I installed airflow for python. How can i acccess web UI for airflow.

did type on internet explorer but nothing appears

localhost:8080

Upvotes: 1

Views: 484

Answers (1)

Elad Kalif
Elad Kalif

Reputation: 15979

You need to start the webserver:

airflow webserver --port 8080

Then you will be able to access the UI via localhost:8080

You can follow the quick start instructions.

Upvotes: 1

Related Questions