-
Notifications
You must be signed in to change notification settings - Fork 489
Initial data configuration
dbeaver-devops edited this page Oct 30, 2025
·
8 revisions
This document provides guidelines for configuring details about administrator credentials and predefined teams in the CloudBeaver, including their IDs, names, descriptions, and assigned permissions.
For more details on configuration, see the CloudBeaver server configuration.
The path to the initial data configuration file is specified in the server.database.initialDataConfiguration section
of the main server configuration file.
Tip: By default, the file is located at
/opt/cloudbeaver/conf/initial-data.conf.
| Name | Default value | Units | Description |
|---|---|---|---|
adminName |
cbadmin |
string | Admin name. |
adminPassword |
SuperSecretPassw00rd |
string | Admin password. |
subjectId |
- | string | ID for the team. |
teamName |
- | string | Name for the team. |
description |
- | string | Team description. |
permissions |
["admin"] / []
|
list of strings | Permissions for the team. Only two roles are available: administrators and other users. To assign admin access, specify "admin". |
Note: By default, admin configurations are not created automatically, but you can create them manually if needed.
- Getting started
- Create connection
- Connection network options
- Supported databases
-
Drivers management
- Database authentication methods
- Database navigator
- Properties editor
- Data editor
- SQL editor
-
Entity relation diagrams
- Cloud services
-
AI Smart assistance
- Data transfer
- General user guide
- Administration
- Server configuration
-
Server security and access configuration
- Authentication methods
- Access management
- Proxy configuration
-
Secret management
- Logs
-
Query manager
- Workspace location
- Command line parameters
-
Session manager
- Deployment options
- CloudBeaver Editions
- FAQ
- Development
{ adminName: "cbadmin", adminPassword: "cbadmin20", teams: [ { subjectId: "admin", teamName: "Admin", description: "Administrative access. Has total and full authority.", permission: ["admin"] }, { subjectId: "user", teamName: "User", description: "Standard user", permission: [] } ] }