When I run ‘yum install package‘ or ‘yum update‘ commands the yum command works normally until Running Transaction Test and hangs until the yum process is killed manually using the kill command. How do I fix this problem under CentOS Linux 5.x AMD64 running on HP server?
This error indicates that other duplicate yum processes running on the system or older yum process causing problem. To fix this problem either reboot the server or type the following commands:
# /bin/rm /var/lib/rpm/__db.*
# cd /var/cache/yum
# /bin/rm -rf *
# yum clean all
# yum update
If you still get the same problem just reboot the server.
🐧 5 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
interesting tip . keep it up :)
excellent hint.. struggled the whole night to find such hint.. worked perfectly
We can use “yum clean dbcache” if DB error throws :)
THANK YOU! YUM was giving me fits. This was the only “delete/clean/update” tip that actually worked.
Hello,
/bin/rm /var/lib/rpm/__db.*
cd /var/cache/yum—–after that what to do …..