From e85637e7dfbce22c33bca9340b858188d0387283 Mon Sep 17 00:00:00 2001 From: Konrad Bucheli Date: Wed, 15 May 2024 15:03:19 +0200 Subject: [PATCH] how to fix RPM database --- .../troubleshooting/package_management.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/admin-guide/troubleshooting/package_management.md b/admin-guide/troubleshooting/package_management.md index 827de6bf..3be6d54d 100644 --- a/admin-guide/troubleshooting/package_management.md +++ b/admin-guide/troubleshooting/package_management.md @@ -26,6 +26,9 @@ sssd-common-1.16.5-10.el7_9.12.x86_64 Now you can try to remove one or both packages, maybe you need to remove also packages which depend on this one. Then install it again. ## Berkley DB Issue + +### BDB0087 DB_RUNRECOVERY + If the error message is ``` error: rpmdb: BDB0113 Thread/process 21389/140229907089216 failed: BDB1507 Thread died in Berkeley DB library @@ -44,6 +47,23 @@ mv /var/lib/rpm/__db* /tmp yum clean all ``` +### BDB0091 DB_VERSION_MISMATCH + +For +``` +RPM: error: db5 error(-30969) from dbenv->open: BDB0091 DB_VERSION_MISMATCH: Database environment version mismatch +RPM: error: cannot open Packages index using db5 - (-30969) +RPM: error: cannot open Packages database in /var/lib/rpm +Error: Could not run transaction. +``` +do + +``` +yum clean all +rpm --rebuilddb +``` + + ## Rebuild RPM Database When `yum`, `dnf` or `rpm` hang or have errors pointing to a problem with their database, then follow the [Guide to rebuild a corrupted RPM database](https://www.tecmint.com/rebuild-corrupted-rpm-database-in-centos/)