我尝试使用 Ubuntu 软件中心安装 mysql 服务器和 mysql 工作台,但无法安装它们。然后我使用命令行安装 mysql 服务器并分别运行以下代码:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install mysql server
但是,我在执行最后一条命令后收到以下错误:
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
mysql-server : Depends: mysql-community-server (= 5.6.24-1ubuntu14.10) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
我该如何解决这个问题?有没有简单的方法来安装 mysql 服务器和 mysql 工作台?
这些是我的计算机上的所有mysql版本:
`apt-cache search mysql|egrep '^mysql'
mysql-client-5.5 - MySQL database client binaries
mysql-client-core-5.5 - MySQL database core client binaries
mysql-server-5.5 - MySQL database server binaries and system database setup
mysql-server-core-5.5 - MySQL database server binaries
mysql-client-5.6 - MySQL database client binaries
mysql-client-core-5.6 - MySQL database core client binaries
mysql-common-5.6 - MySQL 5.6 specific common files, e.g. /etc/mysql/conf.d/my-5.6.cnf
mysql-mmm-agent - Multi-Master Replication Manager for MySQL - agent daemon
mysql-mmm-common - Multi-Master Replication Manager for MySQL - common files
mysql-mmm-monitor - Multi-Master Replication Manager for MySQL - monitoring daemon
mysql-mmm-tools - Multi-Master Replication Manager for MySQL - tools
mysql-proxy - high availability, load balancing and query modification for mysql
mysql-server-5.6 - MySQL database server binaries and system database setup
mysql-server-core-5.6 - MySQL database server binaries
mysql-source-5.5 - MySQL source
mysql-source-5.6 - MySQL source
mysql-testsuite-5.5 - MySQL testsuite
mysql-testsuite-5.6 - MySQL 5.6 testsuite
mysql-utilities - collection of scripts for managing MySQL servers
mysql-workbench - MySQL Workbench - a visual database modeling, administration and queuing tool
mysql-workbench-data - MySQL Workbench -- architecture independent data
mysqltcl - interface to the MySQL database for the Tcl language
mysqltuner - high-performance MySQL tuning script
mysql-apt-config - Auto configuration for MySQL APT Repo.
mysql-client - MySQL Client meta package depending on latest version
mysql-common - MySQL Common
mysql-community-bench - MySQL Bench
mysql-community-client - MySQL Client
mysql-community-server - MySQL Server
mysql-community-source - MySQL source
mysql-community-test - MySQL Test Run MTR - The MySQL testsuite
mysql-server - MySQL Server meta package depending on latest version
mysql-testsuite - MySQL Testsuite meta package depending on latest version
mysql-workbench-community - MySQL Workbench
答案1
在终端中尝试以下命令--
sudo apt-get purge mysql-client-core-5.6
sudo apt-get install mysql-client-core-5.6
sudo apt-get install mysql-server