Hi, I would like know how to stop Airflow in Melt...
# troubleshooting
e
Hi, I would like know how to stop Airflow in Meltano after ran
meltano invoke airflow scheduler
How can I achieve this?
p
Hey @edi_wijaya! Maybe you figured this out already but if you run airflow in the foreground using the command you provided then just sending a control+c will signal to airflow to terminate, if you ran it in the background using the
-D
flag you can kill the process using something like
pkill -f airflow
e
@pat_nadolny thank you the response. I am going to use it.....