작성
·
347
·
수정됨
1
만약 GPG체크오류가 계속 해서 뜬다면 이것을 시도해보세요
다운로드한 패키지들을 dnf
명령어를 사용하여 설치합니다. 먼저, 패키지들을 다운로드합니다:
wget https://repo.mysql.com/yum/mysql-8.0-community/el/9/x86_64/mysql-community-client-plugins-8.0.37-1.el9.x86_64.rpm
wget https://repo.mysql.com/yum/mysql-8.0-community/el/9/x86_64/mysql-community-common-8.0.37-1.el9.x86_64.rpm
wget https://repo.mysql.com/yum/mysql-8.0-community/el/9/x86_64/mysql-community-icu-data-files-8.0.37-1.el9.x86_64.rpm
wget https://repo.mysql.com/yum/mysql-8.0-community/el/9/x86_64/mysql-community-libs-8.0.37-1.el9.x86_64.rpm
dnf
명령어를 사용하여 GPG 체크 없이 패키지를 설치합니다:
sudo dnf install ./mysql-community-client-8.0.37-1.el9.x86_64.rpm --nogpgcheck
sudo dnf install ./mysql-community-client-plugins-8.0.37-1.el9.x86_64.rpm --nogpgcheck
sudo dnf install ./mysql-community-common-8.0.37-1.el9.x86_64.rpm --nogpgcheck
sudo dnf install ./mysql-community-icu-data-files-8.0.37-1.el9.x86_64.rpm --nogpgcheck
sudo dnf install ./mysql-community-libs-8.0.37-1.el9.x86_64.rpm --nogpgcheck
sudo dnf install ./mysql-community-server-8.0.37-1.el9.x86_64.rpm --nogpgcheck
MySQL 서비스 시작 및 상태 확인
sudo systemctl start mysqld
sudo systemctl status mysqld
이렇게 하면 해결 되는것 같아요 저도 엄청 꼬였는데 이 코드면 해결되네요