How to fix GPG key retrieval failed: [Errno 14]?

If you trust the repo, you can simply edit the file /etc/yum.repos.d/mysql-community.repo and disable the gpgcheck

[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=1
gpgcheck=0

This error happens because you have some YUM repository configuration in /etc/yum.repos.d/ that lists a GPG key like this:

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puias

This configuration is telling YUM that the GPG key for the repository exists on disk. The error you get from YUM is YUM letting you know that it couldn't find the GPG key at the path /etc/pki/rpm-gpg/RPM-GPG-KEY-puias

So, by manually writing the GPG key to /etc/pki/rpm-gpg/RPM-GPG-KEY-puias like you did, YUM was then able to find the key at that path.

Alternatively, you could have set gpgkey to the URL of the key, like this:

gpgkey=http://springdale.math.ias.edu/data/puias/6/x86_64/os/RPM-GPG-KEY-puias

in you repository configuration.

GPG and YUM/RPM can be quite tricky. If you are curious about how more of the internals work, check out this blog post.


You can also disable gpg check without editing repo file with this command :
yum install --nogpgcheck your_package

Tags:

Rpm

Repository