记录无法安装mysql-Invalid GPG Key from file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql的解决办法

记录遇到的问题;

在aliyun上安装MySQL时由于上次错误卸载mysql 导致校验文件出问题;

处理方式有几种

1到mysql官网下载校验文件

2跳过校验,记录第二种

  编辑文件/etc/yum.repos.d/mysql-community.repo

vi /etc/yum.repos.d/mysql-community.repo 
# Enable to use MySQL 5.6 
[mysql56-community] 
name=MySQL 5.6 Community Server 
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/6/$basearch/ 
enabled=1 
gpgcheck=1-->0 
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
 

 
修改gpgcheck=0即可 

继续安装:

 sudo yum install mysql-community-server

引用:https://dev.mysql.com/doc/mysql-repo-excerpt/5.6/en/linux-installation-yum-repo.html






以上所述是小编给大家介绍的记录无法安装mysql-Invalid GPG Key from file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql的解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

你可能感兴趣的:(记录无法安装mysql-Invalid GPG Key from file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql的解决办法)