Hi guys. I'm Copying Appwrite from One Server to another. Is Copying MariaDb data enough or You need to Copy Other Things too ?
Copy also all the docker volumes
You can this article as a guideline https://dev.to/appwrite/appwrite-in-production-backups-and-restores-4beg
Can I change the MariaDb user And Password After its been installed. Because I have some data that needs to be there & need to change the default password?
Sure you can
You do so by update those details inside the .env which located in the same folder as docker-compose.yml
To be exact those are the values
_APP_DB_HOST=mariadb
_APP_DB_PORT=3306
_APP_DB_SCHEMA=appwrite
_APP_DB_USER=user
_APP_DB_PASS=password
_APP_DB_ROOT_PASS=rootsecretpassword
I can change these Values after Initialising them with default password?
Yes You can set them to whatever you want
And need to Restart the Container?
Yes
Just run docker-compose up -d
It will update only containers the affect by the .env file change
Hello @ORIZON , I think this conversation will be useful: https://discord.com/channels/564160730845151244/1082652391867944980
Recommended threads
- How to use dart workspaces to deploy a f...
Hello, I'm developing a Flutter application and I would like to leverage dart pub workspaces to deploy a function with a dart runtime as advertised here : http...
- Migration from Cloud to Self-Hosted not ...
Hello Appwrite Community, I've got the problem, that when I try to migrate my Appwrite Project from the cloud to my self-hosted Appwrite, that an API Key is mi...
- I can't migrate my project from Appwrite...
I'm having an issue migrating my Appwrite project to a self-hosted instance. The problem is that I've exceeded my read rate limit (or database read limit), so I...