How do you stop/check logs for airflow webserver/scheduler with --daemon?

Viewed 18264

Hi I'm using Airflow and running in background in EC2. But how do you stop/check logs? I couldn't find the detailed explanation on the documentation.

Thanks!

3 Answers

If you start your Airflow-Webserver and other deamon using systemd (see this repo), it`s quite straightforward:

journalctl -u airflow-webserver.service

Related