search for: rpmdbnextiterator

Displaying 8 results from an estimated 8 matches for "rpmdbnextiterator".

2015 Apr 28
2
CentOS 6.6 x86_64, rpm error: rpmdbNextIterator: skipping h# ...
...but I have a pair of CentOS 6.6 x86_64 + Virtualmin 4.13 GPL servers which no longer seem to be picking up available updates. 'yum check' ran for about 25 minutes this evening on one of them and returned nothing useful. rpm -qa --last is returning this (lines intentionally split): error: rpmdbNextIterator: skipping h# 259 Header V3 RSA/SHA256 \ Signature, key ID c105b9de: BAD error: rpmdbNextIterator: skipping h# 4 Header V3 RSA/SHA256 \ Signature, key ID c105b9de: BAD error: rpmdbNextIterator: skipping h# 1028 Header V3 RSA/SHA1 \ Signature, key ID c105b9de: BAD - - - - 8< snippe...
2015 Apr 28
0
CentOS 6.6 x86_64, rpm error: rpmdbNextIterator: skipping h# ...
...4 + Virtualmin 4.13 GPL > servers which no longer seem to be picking up available updates. > > 'yum check' ran for about 25 minutes this evening on one of them and > returned nothing useful. > > rpm -qa --last is returning this (lines intentionally split): > > error: rpmdbNextIterator: skipping h# 259 Header V3 RSA/SHA256 \ > Signature, key ID c105b9de: BAD > > error: rpmdbNextIterator: skipping h# 4 Header V3 RSA/SHA256 \ > Signature, key ID c105b9de: BAD > > error: rpmdbNextIterator: skipping h# 1028 Header V3 RSA/SHA1 \ > Signature, key ID c1...
2015 Apr 28
1
[SOLVED] Re: CentOS 6.6 x86_64, rpm error: rpmdbNextIterator: skipping h# ...
...eeded to better understand the problem, first. As it happens, I refined my search phrase a few more times and ultimately discovered the problem ... and the fix: <http://kiteplans.info/2015/01/15/solved-bug-centos-yum-rpm-broken-by-nss-softokn-3-14-3-19-el6_6-update-error-rpmts_hdrfromfdno-error-rpmdbnextiterator-header-v3-rsasha1-signature-key-id-bad/> Both servers are behaving properly now. Thanks again for your kind reply & regards, Carl
2006 Jan 22
0
Latest kde/tetex updates fail on my attempts. Is it me or ...?
...bout to show, having given up for the week, except for this posting. Edited Yum output is shown below. Update goes into an endless install process after reporting sources are downloaded already. =========== Edited yum output: abbreviated ============= yum update kdelibs >&/tmp/errs error: rpmdbNextIterator: skipping h# 1875 Header V3 DSA signature: BAD, key ID 443e1821 error: rpmdbNextIterator: skipping h# 1553 Header V3 DSA signature: BAD, key ID 443e1821 error: rpmdbNextIterator: skipping h# 1875 Header V3 DSA signature: BAD, key ID 443e1821 ==== 8 more of above and many other DSA keys onc...
2011 Oct 03
1
hdr SHA1: BAD, not hex
Got a problem with one workstation. What I'm seeing, from a yum update (saw it with make whatis first): <snip> Running rpm_check_debug error: rpmdbNextIterator: skipping h# 1211 hdr SHA1: BAD, not hex <repeated many times> <snip> ERROR with rpm_check_debug vs depsolve: libicui18n.so.36 is needed by boost-1.33.1-10.el5_7.3.i386 libicuuc.so.36 is needed by boost-1.33.1-10.el5_7.3.i386 Complete! (1, [u'Please report this error in http://bu...
2019 Jan 23
2
[supermin PATCH 1/2] rpm: extend the Multiple_matches exception
...turn; } #define Librpm_val(v) (*((struct librpm_data *)Data_custom_val(v))) @@ -296,7 +301,7 @@ supermin_rpm_pkg_requires (value rpmv, value pkgv) fflush (stdout); } if (count != 1) - librpm_raise_multiple_matches (count); + librpm_raise_multiple_matches (pkgv, count); h = rpmdbNextIterator (iter); assert (h != NULL); @@ -413,7 +418,7 @@ supermin_rpm_pkg_filelist (value rpmv, value pkgv) fflush (stdout); } if (count != 1) - librpm_raise_multiple_matches (count); + librpm_raise_multiple_matches (pkgv, count); h = rpmdbNextIterator (iter); assert (h != NULL);...
2010 Oct 30
0
RPM DB DSA Signature Errors
Alle, I'm running CentOS 4.8. I just started seeing these errors during RPM operations: error: rpmdbAdd: skipping h# 990 Header V3 DSA signature: BAD, key ID 443e1821 error: rpmdbNextIterator: skipping h# 969 Header V3 DSA signature: BAD, key ID 443e1821 I've cleared out the __db.* files and tried to rebuild the DB with no luck. I've also tried this: http://forums.fedoraforum.org/showthread.php?t=145858 and this: cd /var/lib tar zcvf /var/preserve/rpmdb-`date +"%d%m%...
2014 Sep 17
4
[PATCH 0/2] supermin: use librpm for rpm support
Hi, this work makes supermin use the rpm library instead of invoking rpm directly. This, together with a needed refactoring of the dependency resolution, should help in make supermin faster on rpm-based systems. Surely the patches will still need polishing, especially for behaviours of newly added stuff, but at least it's a good starting point. Noting that you need rpm-devel on most of rpm