#[SOLVED] Is it really needed for Appwrite to have access to the DB root user?
10 messages · Page 1 of 1 (latest)
Appwrite itself never uses that variable as can be seen in the docker-compose.yml file
...
- _APP_DB_HOST
- _APP_DB_PORT
- _APP_DB_SCHEMA
- _APP_DB_USER
- _APP_DB_PASS
...
The only reason is to set the MariaDB root password in case it needed
And, it's best to set it upfront
So I should leave that password in blank?
No, just put a very strong password
Obviously from the database side I will put a very strong password. The thing is that if I should specify or not that password in the env var. From what I understood, it's not needed specifying the root password, right?
In that case, you can get a warning that you'll need to allow an empty password.