Mengatasi GPG error – tidak bisa update dan install MySQL 5.7

Cara mengatasi GPG error – tidak bisa update install MySQL 5.7 pada Linux CentOS, Ubuntu, dan Debian. Kira-kira errornya seperti ini:

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

Akses terminal dengan user root kemudian import rpm GPG key terbaru dengan perintah berikut:

Untuk CentOS

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

Untuk Ubuntu/Debian

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

Referensi:

Add a comment