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.
aws ec2서버에 mysql5.7버전을 설치하는데 위와같은 로그가 나와서 설치가 되지 않았다... 그래서 찾아본 결과 gpgkey를 업데이트 해줘야했다.
/etc/yum.repos.d/에 있는 mysql repo파일의 gpgkey행을 다음과같이 수정
gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
혹은 다음과같은 명령어 실행
sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
이후에 명령어가 잘 실행됐다면 설치를 진행하면 됩니다.
감사합니다 :)