简体   繁体   中英

How to solve error "sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: session" when running Airflow

I've installed Apache Airflow version 2.2.4 on my system Ubuntu 20.0.4 LTS and I'm using these steps

  • export AIRFLOW_HOME=~/airflow
  • pip3 install apache-airflow
  • airflow db init
  • airflow users create --username admin --firstname XXXX --lastname XXX --role Admin --email XXX@gmail.com

When I'm running my server using this command

  • airflow webserver -p 8080

I've got an error saying

sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: session

阿帕奇气流

How can I solve this error?

在使用命令 airflow airflow webserver运行 webserver 之前,请确保使用以下命令设置 AIRFLOW_HOME:

 export AIRFLOW_HOME="your_airflow_directory"

For me the issue was that I have set the AIRFLOW_HOME on one tab of my terminal, but on the other tab (from where I was running the webserver) I forgot to set it. So the solution is to do the following in ALL TERMINAL TABS that you're using for Airflow:

  1. Activate the virtual environment where your Airflow is installed

    source your_airflow_venv/bin/activate
  2. Navigate to the directory where your Airflow project is

    cd /path_to_your_airflow_dir
  3. Update your AIRFLOW_HOME environment variable

    export AIRFLOW_HOME=$(pwd)
  4. Initialize the Airflow database

    airflow db init
  5. Start the Airflow Web Server or the Airflow Scheduler (depending on which terminal tab you currently are)

     airflow scheduler airflow webserver

I had the same error message. I made the mistake and naively installed airflow through pip.

I fixed the issue by deleting the directory AIRFLOW_HOME points to and reinstalling airflow through pip with a constraint . Then I initiated the automated airflow setup with the airflow standalone command.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM