Hello! I installed the latest version of apwrite on my MacBook to test it. Everything was installed successfully, but I can’t access the control panel. When creating a new user, it says that the limit is over. How can I solve this problem
Hi, you might want to look at the environment variables of Appwrite at: https://appwrite.io/docs/advanced/self-hosting/environment-variables By default I think you can only register 1 user for the control panel. You can disable that by changing the _APP_CONSOLE_WHITELIST_ROOT variable or you can choose to whitelist emails or ips
I can't create the first user as a primary administrator
If I disable _APP_CONSOLE_WHITELIST_ROOT the server error
I already have a working version on my server. but in the old version there was no such problem. I wanted to update the new version, but before that I wanted to check whether to update or not.
Does the issue persist when using a lower minor version? I personally only tried it with version 1.3.x on MacBook
I wanted to update the new version, but before that I wanted to check whether to update or not.
How did you upgrade? Uhh did you try to install ANOTHER appwrite instance on the same machine? If so, that doesn't work 👀
I already have a working version of appwrite on the server (Linux). But this is an old version. I wanted to upgrade to a new one. But before updating I wanted to install it on my MacBook. There is no other copy. I installed the latest version from scratch. I wanted to see if I should update to a new one or not.
But now I can't create the first user. “It says that the limit on the number of users has been reached, look at the console.” This is the kind of message that comes out.
what's the output of docker volume ls
I installed docker and appwrite from scratch. There cannot be another copy.
please share the output of docker volume ls.
Please also share the output of this:
docker exec -it appwrite-mariadb sh -c 'mysql -uroot -p$MYSQL_ROOT_PASSWORD $MYSQL_DATABASE -e "select _id as \"Internal ID\", _uid as \"User ID\", name as \"Name\", _createdAt as \"Created At\" from _console_users;"'
Run docker inspect appwrite_appwrite-mariadb
The command you executed doesn't match what I sent
Recommended threads
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...