Reputation: 207
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
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