The GPG keys listed for the "MySQL 8.0 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-client-plugins-8.0.40-1.el7.x86_64
GPG Keys are configured as: https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
# 기존 키 제거 및 새로운 키 import
sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
# 저장소 캐시 갱신
sudo yum clean all
sudo yum makecache
3️⃣ 3순위: RPM 직접 다운로드 설치
# RPM 패키지 직접 다운로드
wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-community-server-8.0.33-1.el7.x86_64.rpm
# 직접 설치
sudo rpm -ivh mysql-community-server-8.0.33-1.el7.x86_64.rpm
문제 상황
MySQL Community Server 설치 과정에서 GPG 키 검증 오류 발생:
원인 분석
해결 방안
1️⃣ 1순위: GPG 체크 무시 설치
장점
단점
2️⃣ 2순위: GPG 키 수동 업데이트
3️⃣ 3순위: RPM 직접 다운로드 설치
예방 조치
시스템 업데이트
Repository 설정 점검
GPG 키 상태 점검
참고 문서
Labels
bug
installation
mysql
gpg
security
troubleshooting