-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with gpg at ha.pool.sks-keyservers.net #39
Comments
Keyserver issues are unfortunately very common -- we've tried a number of different methods, and the only method that's reasonably successful at combating the issue on a large scale is trying multiple keyservers in a loop until one succeeds. Usually, just re-starting the failing build is enough to get it to work in our testing, but there may be firewalls, etc in place that force a keyserver switch ( |
@tianon OK,thanks,I will try it |
Experiencing the same, tho restarting doesn't help - it happens on every run since some days when using |
Seems that using |
Thanks, I was take it . I found I was work with proxy,So I was used by this way to resolve. |
@longquan7 This is the way I solved it. Give it a try :) for server in ha.pool.sks-keyservers.net \
hkp://p80.pool.sks-keyservers.net:80 \
keyserver.ubuntu.com \
hkp://keyserver.ubuntu.com:80 \
pgp.mit.edu; do
gpg --keyserver "$server" --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && break || echo "Trying new server..."
done |
@camilo0365 Because I was use proxy, So this is the way I sovled my problem :)
|
this hits us randomly when Jenkins needs to rebuild the image
I solved it by u getting it from multiple servers.. Not ideal but it works
|
* gpg key verification occasionally fails due to network issues when attempting to fetch keys. Combat this with two approaches: * Disable ipv6 testing in dirmngr.conf. [1] * Provide a fallback list of keyservers to pull from. [2] [1] usbarmory/usbarmory-debian-base_image#9 (comment) [2] tianon/gosu#39 (comment)
* gpg key verification occasionally fails due to network issues when attempting to fetch keys. Combat this with two approaches: * Disable ipv6 testing in dirmngr.conf. [1] * Provide a fallback list of keyservers to pull from. [2] [1] usbarmory/usbarmory-debian-base_image#9 (comment) [2] tianon/gosu#39 (comment)
* gpg key verification occasionally fails due to network issues when attempting to fetch keys. Combat this with two approaches: * Disable ipv6 testing in dirmngr.conf. [1] * Provide a fallback list of keyservers to pull from. [2] [1] usbarmory/usbarmory-debian-base_image#9 (comment) [2] tianon/gosu#39 (comment)
- fix dependencies for debian 9 base image - fix gpg key server issues tianon/gosu#39
Hi, I am trying to install this:
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4
its giving:
B42F6819007F00F88E364FD4036A9C25BF357DD4
gpg: keybox '/tmp/tmp.M9AXejR6yQ/pubring.kbx' created
gpg: keyserver receive failed: Connection timed out
problem with server ? when I was used "gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys
B42F6819007F00F88E364FD4036A9C25BF357DD4" have the same problem.
The text was updated successfully, but these errors were encountered: