mad_
mad_

Reputation: 8273

How to access UI in Airflow 1.10?

To start with I am trying to upgrade from 1.9 version to 1.10 so my setup contains two vms running different versions of airflow with different port forwarding. I can access UI from vm running with 1.9 but not able to access UI from 1.10. To debug I want to confirm if airflow webserver is running. if I execute

sudo systemctl start airflow-webserver

it throws no error but when I am looking at netstat I am not seeing any process listening to port 8080(default).

Also I have not created any user as I do not need rbac authentication ? Can that be a problem?

As requested by @kaxil. Below is the output of ps aux | grep airflow enter image description here Can someone provide some suggestions on how to fix this problem? Also if you need any further resource can provide it. I am not sure what is relevant here.

Output of journalctl -u airflow-webserver.service -b

enter image description here

Upvotes: 0

Views: 451

Answers (1)

kaxil
kaxil

Reputation: 18874

The Error message shows that there is an issue with airflow.cfg file i.e. there might be a character in your airflow.cfg that is causing the issue. Recheck your config file, if you don't find an issue, post your config file in your question and we will try to figure it out.

Upvotes: 2

Related Questions