Follow the MariaDB steps here
mariadb:
image: mariadb:10.7 # fix issues when upgrading using: mysql_upgrade -u root -p
container_name: appwrite-mariadb
<<: *x-logging
restart: unless-stopped
networks:
- appwrite
volumes:
- appwrite-mariadb:/var/lib/mysql:rw
environment:
- MYSQL_ROOT_PASSWORD=${_APP_DB_ROOT_PASS}
- MYSQL_DATABASE=${_APP_DB_SCHEMA}
- MYSQL_USER=${_APP_DB_USER}
- MYSQL_PASSWORD=${_APP_DB_PASS}
command: 'mysqld --innodb-flush-method=fsync'
Oh, okay
Tried that but still the same
do you have a reverse proxy in front?
Yes from cloudflare
I just disable the proxy but the same
Cloudflare won't affect that's okay
Nothing else?
Nothing else
This doesn't seem right...usually domain and domain target are the same.
Is the domain your accessing appwrite == that domain env var?
Can I downgrade to previous version then upgrade again
You have db backup?
It's a new APP, no data yet
Then you can just reinstall it
And also change the _APP_DOMAIN to match the _APP_DOMAIN_TARGET
I'm acccesing Appwrite via appwrite.mydomain.com
Then set _APP_DOMAIN to that domain
_APP_DOMAIN is not your outside app but is the Appwrite domain
After changing - if it's a live Appwrite - run
docker compose down && docker compose up -d
And you should be set to go
Wow, it's working now Thanks alot ✌🏽
<:appwriteupvote:899677724615016528>
And now it error 500
For this part check this
This is just a temporary solution till Appwrite will release the patch
Recommended threads
- Cannot use custom SMTP for messaging (SM...
Hey there! I'm on Appwrite Self-hosted 1.9.0. I've never used the messaging feature before, always sent emails through functions or a custom backend, but I'v...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...
- > AppwriteException: The requested servi...
When trying to read or write from my database I get the following error: > AppwriteException: The requested service is disabled. You can enable the service from...