在 Debian 9 中安装 mysql

在 Debian 9 中安装 mysql

我需要在 Debian 9 stretch 上安装 MySQL 7.5,我尝试使用 PPA 下载它,但是当我尝试更新并完成下载时出现错误 apt-key expire。

Err:2 http://repo.mysql.com/apt/debian stretch InRelease
  The following signatures were invalid: EXPKEYSIG 8C718D3B5072E1F5 MySQL Release Engineering 
Hit:4 https://packages.sury.org/php stretch InRelease

我尝试删除该密钥并重新添加,但问题仍然存在。 我该如何解决这个问题,请帮帮我!

答案1

很难找到,因为:

  1. MySQL 不支持该版本,它是 8 或 5:https://downloads.mysql.com/archives/community/

  2. 关于 MySQL 版本 7 存在一些混淆。请参阅:https://dba.stackexchange.com/questions/207506/what-happened-to-mysql-6-7

我发现本网站它看起来像是肯特大学制作的 MySQL 档案。如果您想通过 .deb 文件安装它,我将为您提供以下步骤:

获取.deb文件,例如:

wget http://www.mirrorservice.org/sites/ftp.mysql.com/Downloads/MySQL-Cluster-7.5/mysql-cluster-community-client-dbgsym_7.5.23-1debian10_amd64.deb

安装:

dpkg -i mysql-cluster-community-client-dbgsym_7.5.23-1debian10_amd64.deb

安装依赖项:

sudo apt-get -f install

相关内容