ubccr / hpc-toolset-tutorial

Tutorial for installing Open XDMoD, OnDemand, & ColdFront
GNU General Public License v3.0
118 stars 68 forks source link

MariaDB error #185

Open st1553 opened 2 months ago

st1553 commented 2 months ago

Keep getting this error when trying to build the containers with compose: coldfront | raise NotSupportedError( coldfront | django.db.utils.NotSupportedError: MariaDB 10.4 or later is required (found 10.3.39). coldfront | -- Waiting for database to become active ...

josemunozc commented 2 months ago

Found same error after rebuilding locally to fix issue with ondemand certificate:

$ docker compose logs -f coldfront
...
django.db.utils.NotSupportedError: MariaDB 10.4 or later is required
...

Fixed by changing MARIADB_VERSION in .venv hidden file to 10.4, and rebuilding with:

$ docker-compose up -d --no-deps --build mysql
st1553 commented 1 month ago

Thank you. I actually don't see a .venv directory. Where is that?