mysql - 无法在 Debian 10 上安装 Mysql 社区服务器

标签 mysql debian-buster

您好,我无法在新安装的 Debian 10 计算机上安装 mysql 8。 这是我所做的:

$ cd /tmp
$ wget https://dev.mysql.com/get/mysql-apt-config_0.8.13-1_all.deb
$ sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb

After this ran 
$ sudo apt update
$ sudp apt  install mysql-server 


I am getting the bellow error: 

The following packages have unmet dependencies:
 mysql-server : Depends: mysql-community-server (= 8.0.18-1debian10) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

最佳答案

不确定 debian 10 存储库中是否提供依赖项。 试试安装依赖项的运气

sudo apt update
sudo apt install -f

关于mysql - 无法在 Debian 10 上安装 Mysql 社区服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59558618/

相关文章:

mysql - 连接 SELECT * 结果

php - 如何在 SPhinxql 查询生成器中设置匹配模式

debian - Java 10 : "No documentation found" for System. out.println(...)

php - Docker PHP7 CLI Debian Buster如何安装软件包php-imagick?

PHP 和 MYSQL 在正确显示 ñ 的同时也无法正确显示双引号

python - 计算数据库中行数的函数只能运行一次

mysql - 我如何在 mysql 中使用 2 个条件进行更新

import - AWS : error while creating AMI from a debian 10 iso - Unsupported kernel version

docker - 无法使用 EF Core Mysql 提供程序将 Docker 中的 Asp.net Core Web Api 连接到主机服务器上的非 Docker Mysql

python-3.x - 如何在 Debian Buster 上安装 pandas 和 numpy?