[GH-ISSUE #2611] Cannot see vertica in cloudbeaver ce UI #877

Closed
opened 2026-03-07 20:56:06 +03:00 by kerem · 0 comments
Owner

Originally created by @deepaksinghkhetwal on GitHub (May 14, 2024).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/2611

Describe the bug
I am trying to add vertica driver in cloudbeaver CE using doc https://github.com/dbeaver/cloudbeaver/wiki/Adding-new-database-drivers. But cannot see the driver added in the UI

To Reproduce
Steps to reproduce the behavior:

  1. Created pom.xml at server/drivers/vertica/
<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.vertica</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>vertica</deps.output.dir>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.vertica.jdbc</groupId>
            <artifactId>vertica-jdbc</artifactId>
            <version>10.0.1-0</version>
        </dependency>
    </dependencies>

</project>

  1. added the below to modules section in server/drivers/pom.xml

<module>vertica</module>

  1. Added in the server configuration at server/bundles/io.cloudbeaver.resources.drivers.base/plugin.xml

Resource mappings
<resource name="drivers/vertica"/>

Bundles
<bundle id="drivers.vertica" label="Vertica drivers"/>

Enabled Drivers

<driver id="generic:vertica"/>

  1. Build the app

5 Created docker container and deployed it. But I do not see the driver in cloudbeaver UI

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here, e.g. error log.

Originally created by @deepaksinghkhetwal on GitHub (May 14, 2024). Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/2611 **Describe the bug** I am trying to add vertica driver in cloudbeaver CE using doc https://github.com/dbeaver/cloudbeaver/wiki/Adding-new-database-drivers. But cannot see the driver added in the UI **To Reproduce** Steps to reproduce the behavior: 1. Created pom.xml at server/drivers/vertica/ ``` <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.vertica</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>vertica</deps.output.dir> </properties> <dependencies> <dependency> <groupId>com.vertica.jdbc</groupId> <artifactId>vertica-jdbc</artifactId> <version>10.0.1-0</version> </dependency> </dependencies> </project> ``` 2. added the below to modules section in server/drivers/pom.xml `<module>vertica</module>` 3. Added in the server configuration at server/bundles/io.cloudbeaver.resources.drivers.base/plugin.xml Resource mappings `<resource name="drivers/vertica"/>` Bundles `<bundle id="drivers.vertica" label="Vertica drivers"/>` Enabled Drivers `<driver id="generic:vertica"/>` 4. Build the app 5 Created docker container and deployed it. But I do not see the driver in cloudbeaver UI **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here, e.g. error log.
kerem 2026-03-07 20:56:06 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#877
No description provided.