摘自:http://www.javashuo.com/article/p-ethdkywd-ew.htmlhtml
红帽安装rpm安装MySQL时爆出警告: 警告:MySQL-server-5.5.46-1.linux2.6.x86_64.rpm: 头V3 DSA/SHA1 Signature, 密钥 ID 5072e1f5: NOKEY 缘由:这是因为yum安装了旧版本的GPG keys形成的 解决办法:后面加上 --force --nodeps 如: rpm -ivh MySQL-server-5.5.46-1.linux2.6.x86_64.rpm --force --nodeps 从 RPM 版本 4.1 开始,在安装或升级软件包时会检查软件包的签名。node
CentOS安装rpm安装MySQL时爆出警告:mysql
1
|
warning: mysql-community-server-5.7.19-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
|
缘由:这是因为yum安装了旧版本的GPG keys形成的linux
解决办法:后面加上sql
1
|
--force --nodeps
|
如:rpm -ivh mysql-community-server-5.7.19-1.el6.x86_64.rpm --force --nodepsspa
好了,完美解决code