Prerequisite: The instance must be in a running state before you can manage its users.To manage the same users programmatically, see the Database users API.
Opening the User Access Tab
- Go to app.falkordb.cloud and sign in.
- Select your instance from the list.
- Click the User Access tab on the instance detail page.
Default User
Every instance has a default user that is created automatically during deployment. This user cannot be deleted — its credentials can only be changed by modifying the instance configuration.Creating a User
- From the User Access tab, click Add User.
- Fill in the required fields:
- Username — the login name for the new user.
- Password — a secure password for the user.
- Assign permissions using one of the two options:
-
ACL preset — select one of the built-in presets from the dropdown:
Admin— full read/write access and operations.Read— read-only access to graphs.Write— full read/write access to graphs.
- Custom ACL — enter a Redis ACL rule string directly to define fine-grained access control. See ACL for available rule syntax.
-
ACL preset — select one of the built-in presets from the dropdown:
- Click Save to create the user.
Updating a User
- From the User Access tab, locate the user you want to update in the table.
- Click the Edit (pencil) icon next to the user.
- Modify the password, preset, or custom ACL as needed.
- Click Save to apply the changes.
Deleting a User
- From the User Access tab, locate the user you want to remove.
- Click the Delete (trash) icon next to the user.
- Confirm the deletion in the dialog that appears.
The default user cannot be deleted.
Frequently Asked Questions
Can I delete the default user?
Can I delete the default user?
No. The default user is created during deployment and cannot be deleted. Its credentials can only be changed by modifying the instance configuration.
What ACL presets are available?
What ACL presets are available?
Three presets are available: Read (graph read access only), Write (full graph read/write), and Admin (every allowed command, including administrative ones such as
FLUSHALL and GRAPH.CONFIG). No preset lets a database user manage other database users.How do I apply fine-grained access control?
How do I apply fine-grained access control?
Select Custom ACL when creating or editing a user and enter a Redis ACL rule string. See the ACL command reference for the full rule syntax.
Does the instance need to be running to manage users?
Does the instance need to be running to manage users?
Yes. The instance must be in a running state before you can open the User Access tab and make changes.
Can I change a user's password after creation?
Can I change a user's password after creation?
Yes. Click the Edit icon next to the user in the User Access tab, enter a new password, and save.