close

[Solved] The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package

I am trying to install mysql-community-server in my server But I am facing the following error: The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package in Mysql. In this Exerror article, We are going to learn about How to reproduce this error and we will discuss All Possible Solutions Let’s Get Start with This Article.

How The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error Occurs?

I am trying to install mysql-community-server in my server But I am facing the following error.

warning: /var/cache/yum/x86_64/2/mysql57-community/packages/mysql-community-libs-compat-5.7.37-1.el7.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 3a79bd29: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql


The GPG keys listed for the "MySQL 5.7 Community Server" repository are already installed but they are not correct for this package.
Check that the correct key URLs are configured for this repository.


 Failing package is: mysql-community-libs-compat-5.7.37-1.el7.x86_64
 GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

So here I am writing all the possible solutions that I have tried to resolve this error.

How To Solve The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error?

  1. How To Solve The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error?

    To Solve The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error As Per MySql Documentation For RPM packages, there is no separate signature. RPM packages have a built-in GPG signature and MD5 checksum. Alternatively, rpm also supports loading the key directly from a URL: rpm –import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 By running this command in your Linux will Resolve this error.

  2. The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package

    To Solve The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error As Per MySql Documentation For RPM packages, there is no separate signature. RPM packages have a built-in GPG signature and MD5 checksum. Alternatively, rpm also supports loading the key directly from a URL: rpm –import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 By running this command in your Linux will Resolve this error.

Solution 1: Run this command

To Solve The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package Error As Per MySql Documentation For RPM packages, there is no separate signature. RPM packages have a built-in GPG signature and MD5 checksum. Alternatively, rpm also supports loading the key directly from a URL.

rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022

By running this command in your Linux will Resolve this error.

Solution 2: For Ubuntu

For Ubuntu Users, You can run this command.

wget -q -O https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 | apt-key add -

Now, your error will be solved.

Conclusion

It’s all About this error. I hope We Have solved Your error. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also, Read

Leave a Comment