-
Notifications
You must be signed in to change notification settings - Fork 536
Initial data configuration
dbeaver-devops edited this page Oct 25, 2024
·
9 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.
Tip: For more information on server configuration, see 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 | Description |
|---|---|
adminName |
Admin name. |
adminPassword |
Admin password. |
subjectId |
ID for the team. |
teamName |
Name for the team. |
description |
Team description. |
permissions |
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
- 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: [] } ] }