I have a small ETL to configure for which it was decided to use Airflow within a server. Airflow scheduler and webserver is started using supervisor and I get no error when doing so, supervisorctl status shows:
airflow-scheduler RUNNING pid 6007, uptime 0:08:53
airflow-webserver RUNNING pid 6017, uptime 0:08:46
app RUNNING pid 21737, uptime 1
The Problem is:
Scheduler runs fine with supervisor but webserver running at 0.0.0.0
port 9000
is running but whenever I go to check it directly from my browser I get connection timeout.
- I've checked logs and error from supervisor for the process that runs the webserver and everything seems to be ok.
If I check myserverdomain:9000/admin/
I get nothing or connection timeout.
Any recommendation?