0

KeePassXC 2.7.0 can't open existing database in Ubuntu 21.10.

When I click "Open existing database" or "Import from KeePass 1" or "Help > User Guide" nothing happen.
I can only create new database but I also can't save it.

All permissions in Software Center are granted for KeePassXC.

How can I find the reason and fix it?

27cm
  • 23
  • 5

2 Answers2

0

Try uninstalling keepass 2.7.0

Open a terminal and run this command:

sudo apt install synaptic

When it's done type

sudo synaptic

Search for keepassxc and select version 2.6.6. Hit apply and it will install the older version that isn't broken.

Zanna
  • 69,223
  • 56
  • 216
  • 327
0

In the case that you stay using a not supported browser like Thorium, you must create a file org.keepassxc.keepassxc_browser.json in:

/.config/thorium/NativeMessagingHosts/

with this settings

{
    "allowed_origins": [
        "chrome-extension://pdffhmdngciaglkoonimfcmckehcpafo/",
        "chrome-extension://oboonakemofpalcgghocfoadofidjkkk/"
    ],
    "description": "KeePassXC integration with native messaging support",
    "name": "org.keepassxc.keepassxc_browser",
    "path": "/usr/bin/keepassxc-proxy",
    "type": "stdio"
}

Save and restart your browser and try again.

Or try check in ~/.config/YOUR-BROWSER-NAME/NativeMessagingHosts/ and search for org.keepassxc.keepassxc_browser.json if the folder is empty, simply must create a file and set the data.

Milor123
  • 210
  • 1
  • 11