Reputation: 1263
I started using GNU Privacy Guard. An error occurs when trying to import a key from any server:
gpg --keyserver keys.gnupg.net --recv-key 908F435E
Output:
gpg: keyserver receive failed: No name
Upvotes: 118
Views: 117585
Reputation: 581
Please use these commands one by one:
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
Or you can refer to the rvm.io.
Upvotes: 0
Reputation: 21
Replace $key with the corresponding $key you want to add.
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $key
This works on Ubuntu 20.04 (Focal Fossa).
Upvotes: 2
Reputation: 299
Try these command one by one. It works for me.
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import
curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import
Upvotes: 29
Reputation: 1
keys.gnupg.net
is just an alias to pool.sks-keyservers.net
. You can point directly to this second address and it will work.
Upvotes: -6
Reputation: 9537
I stumbled upon this today and found the fix at Maven Central Repository Documentation. The SKS Keyserver Network is being deprecated and probably gone by now. Just use another GPG key server like:
So for example
gpg --keyserver keyserver.ubuntu.com --recv-key 908F435E
Upvotes: 180
Reputation: 193
As an alternative to the options above, from the RVM security documentation,
If you encounter problem with the key server above, try a different one. Some alternatives are presented below:
The second one worked for me, hkp://pgp.mit.edu
Upvotes: 5