Ubuntu Error: Already running on PID 14733

Viewed 1567

Trying to run my apache airflow DAG on my local machine but when i execute command

airflow webserver -p 8080

i am getting this error

Error: Already running on PID 14733 (or pid file '/home/rahul/airflow/airflow-webserver.pid' is stale)

I already tried killing the given process id but still getting the error.

kill -9 14733

How can i fix this..?

1 Answers

I tried killing all the process that starts with airflow and that did the trick

killall -9 airflow
Related