Please share the mariadb logs
What are the specs on your server?
What else is there above this?
I'm using localhost
m1 Mac pro
16 GB Ram.. 1 TB SSD
it's just keeps scrolling
Maybe not enough resources were allocated for docker? Open docker desktop and check how much system resources were given to docker
isn't this enough?
or should I change it to more?
No that's plenty.
Maybe your mariadb is corrupted. You might need to restore to a previous backup. If you don't care about the data, you can wipe it all and spin up a fresh Appwrite instance
i haven't created the data yet but have created all the data structues and databases!
either way it's not running so.. i'll try to fresh install appwrite.!
Hi Dipen, maybe awogen can avoid you the pain of losing your data structures next time : https://github.com/devloic/awogen/blob/main/examples/awogen_cli_example/README.md
(if you are using dart)
define dart classes and the tool will create the collections and attributes for you
in the database so they map to your classes
if the db crashes, you just regenerate the collections ( wont help you with the lost data though)
You might be able to use the CLI to pull the collection schema if you can still access it: https://appwrite.io/docs/command-line-deployment
To clear your data, go into your appwrite folder with the docker-compose.yml and run:
docker compose down -v
down stops and removes the containers and the -v flag says to also remove the volumes (where the data is)
Then you can start up Appwrite with
docker compose up -d
it worked! I reinstalled appwrite from scratch! had to delete all the data!
Recommended threads
- "Domain verification failed"
"Domain verification failed" I was install Appwrite in my VDS server. I using Coolify for install Appwrite. After install complete, i want add my domain, and i ...
- Appwrite Sites triggers builds for all p...
I connected my Appwrite Sites to my Git app on my self hosted Appwrite server, but even though I only connected it to main branch, it creates a build every sing...
- Scheduled works locking the entire Maria...
I have a scheduled function and apparently that or something is locking the entire MariaDB database and Appwrite is giving MariaDB errors. This error persists e...