- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Error from rpm command
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2005 03:21 PM
07-06-2005 03:21 PM
I'm installing an OVO Unix agent into the Linux Redhat Enterprise version 2.4
The installation failed with error msg:-
error: rpmdbNextIterator: skipping h# 614 blob size(16916): BAD, 8 + 16 * il
(57) + dl(9696)
error: rpmdbNextIterator: skipping h# 615 blob size(15988): BAD, 8 + 16 * il
(538976288) + dl(538976288)
error: rpmdb: damaged header #615 retrieved -- skipping.
error: rpmdb: damaged header #615 retrieved -- skipping.
please help. thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2005 04:57 PM
07-06-2005 04:57 PM
Solutionrpm {--initdb|--rebuilddb}
You may need to delete the db files from /var/lib/rpm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2005 06:47 PM
07-06-2005 06:47 PM
Re: Error from rpm command
looks like the rpm package is corrupted, try to download it again and use it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2005 02:44 AM
07-13-2005 02:44 AM
Re: Error from rpm command
Here is a quick RPM db troubleshooting HOWTO.
First try this:
# rm -f /var/lib/rpm/__db*
If you still have problems with rpm after that try to rebuild the db:
# cd /var/lib; mkdir rpm-backup
# rsync -av ./rpm/. ./rpm-backup/.
# rpm -vv --rebuilddb
The first 2 lines above will backup your RPM db. Always make a backup before trying to have rpm repair the database.
If you still have problems with the RPM database you can use the db_dump and db_load utilities that come with RPM (from the SleepyCat DB database library). Use dp_dump to dump the Packages file then use db_load to reload the Packages file. The act of dumping and restoring may fix a corrupted file.
# cd /var/lib/rpm
# db_verify Packages
# mv Packages Packages-ORIG
# db_dump Packages-ORIG | db_load Packages
# rpm -vv --rebuilddb
HTH,
Ross
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2005 02:46 AM
07-13-2005 02:46 AM
Re: Error from rpm command
ps auxw | grep -i rpm