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
- Custom emails
What happen if I use a third party email provider to customize my emails and my plan run out of emails/month? Appwrite emails are used as fallback sending emai...
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- Can't login or deploy functions in Appwr...
Hello, since i updatet to the appwrite cli 6.1.0 i can't login or deploy functions with the cli. When i call the command: "appwrite get account --verbose" i ge...