Confluence DbConsole - Page Not Found

Hi all,

when starting Confluence via mvn confluence:debug, there is a link “DbConsole” in the top menu, which is supposed to allow exploring the embedded H2 database.

This works fine for Jira. In Confluence however, it is broken. When clicking the link, we get “Page not found” …

5 Likes

Same issue here…Can’t find any documentation to how to configure this. Still looking.

2 Likes

We also had this happen after we moved from amps 6.3.x to amps-maven-plugin 8.1.0 in our pom.xml. I still don’t know the cause. We still have the link in the topbar, but it goes to a 404.

2 Likes

Has anyone found a workaround? I really need to be able to debug my AO logic and not being able to see the DB is very painful!

2023-Aug, same issue.

Found this:
https://ecosystem.atlassian.net/browse/QR-15

Modify pom.xml to force a specific quickreload version:

<plugin>
    <groupId>com.atlassian.maven.plugins</groupId>
    <artifactId>amps-maven-plugin</artifactId>
    <!-- or confluence-maven-plugin, etc. -->
    <version>${amps.version}</version>
    ...
    <configuration>
        ...
        <quickReloadVersion>3.0.1</quickReloadVersion>

DBConsole works after clean and restart.

Can someone please bother to update the template used by atlas-create-confluence-plugin?

1 Like