-
Notifications
You must be signed in to change notification settings - Fork 392
Driver management
CloudBeaver supports almost any database which has a JDBC driver.
It generally supports all drivers supported by DBeaver.
By default, we do not enable all DBeaver drivers in CloudBeaver. They must be added to the server configuration on demand.
You can patch CloudBeaver sources (pom.xml and plugin.xml), build the project and re-pack docker image.
Driver dependencies are configured in the folder server/drivers
.
In order to add a new driver:
- Create new folder for a new driver
- Copy the POM file from any another driver config to the new directory
- Change the module name and driver dependencies in the new POM file
Example of PostgreSQL driver config:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>drivers.postgresql</artifactId>
<version>1.0.0</version>
<parent>
<groupId>io.cloudbeaver</groupId>
<artifactId>drivers</artifactId>
<version>1.0.0</version>
<relativePath>../</relativePath>
</parent>
<properties>
<deps.output.dir>postgresql</deps.output.dir>
</properties>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.20</version>
</dependency>
<dependency>
<groupId>net.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
<version>2.5.0</version>
</dependency>
</dependencies>
</project>
Enabled drivers are configured in the file, server/bundles/io.cloudbeaver.resources.drivers.base/plugin.xml
.
You can copy an existing driver configuration to add a new one.
There are 3 configuration lines for each driver:
-
<resource name="drivers/driver-name"/>
- says that the file-system folderdrivers/driver-name
can be used to load driver jars. -
<bundle id="drivers.driver-name"/>
- needed for driver configuration enable in the DBeaver platform -
<driver id="generic:driver-name"/>
- enabled the DBeaver driver in CloudBeaver. The driver ID can be found in the DBeaver platform (in one of the database-specificplugin.xml
files).
- Application overview
- Demo Server
- Administration
- Server configuration
- Create Connection
- Connection Templates Management
- Access Management
-
Authentication methods
- Local Access Authentication
- Anonymous Access Configuration
- Reverse proxy header authentication
- LDAP
- Single Sign On
- SAML
- OpenID
- AWS OpenID
- AWS SAML
- AWS IAM
- AWS OpenId via Okta
- Snowflake SSO
- Okta OpenId
- Cognito OpenId
- JWT authentication
- Kerberos authentication
- NTLM
- Microsoft Entra ID authentication
- Google authentication
- User credentials storage
- Cloud Explorer
- Cloud storage
- Query Manager
- Drivers Management
- Supported databases
- Accessibility
- Keyboard shortcuts
- Features
- Server configuration
- CloudBeaver and Nginx
- Domain manager
- Configuring HTTPS for Jetty server
- Product configuration parameters
- Command line parameters
- Local Preferences
- API
-
CloudBeaver Community
-
CloudBeaver AWS
-
CloudBeaver Enterprise
-
Deployment options
-
Development