-
Notifications
You must be signed in to change notification settings - Fork 501
Configuring server datasources
This article explains how to set up and manage pre-configured database connections for the CloudBeaver server. These connections are defined by the administrator and stored on the server, making them unmodifiable by end users. Users can choose from these pre-configured connections directly through the main CloudBeaver toolbar and only need to provide their username and password to access the datasource, no other parameters are necessary.
For information about server and workspace configuration, see Server configuration.
All project-level configurations are located in the ${WORKSPACE}/workspace/GlobalConfiguration/.dbeaver folder. The
datasources themselves are defined within the data-sources.json file (see Workspace location for details).
This file contains the settings for each pre-configured connection, allowing the CloudBeaver server to manage and display these connections.
{
"folders": {
},
"connections": {
"dbeaver-sample-database-sqlite-1": {
"provider": "sqlite",
"driver": "sqlite_jdbc",
"name": "DBeaver Sample Database (SQLite)",
"save-password": true,
"show-system-objects": true,
"configuration": {
"database": "/Users/user/Library/DBeaverData/workspace6/.metadata/sample-database-sqlite-1/Chinook.db",
"url": "jdbc:sqlite:/Users/user/Library/DBeaverData/workspace6/.metadata/sample-database-sqlite-1/Chinook.db",
"configurationType": "MANUAL",
"type": "dev",
"closeIdleConnection": true
}
}
}
}Tip: This file follows the same format as the DBeaver datasources configuration file. You can create this configuration in DBeaver and then copy it to your CloudBeaver server.
- 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