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
- how to access the value of account statu...
- Redirect from clicking team invite link ...
Hi all! Pretty new to app development in general so this might be something more generic than appwrite, but I've found (after reading the docs for the Teams API...
- Hosting Issues with Static IP not domain...
I have a machine with Static Public IP. I want to host Appwrite Site on it but I tried it but it doesn't allow IP addresses in Domain names. What should I do h...