ubuntu/debain安装最新Mysql

2019年3月28日

重新安装 MySQL 的步骤

注意

以下说明假定您的系统上尚未安装 MySQL 版本 (无论是由 Oracle 还是其他方分发);如果不是这种情况, 请按照使用 MYSQL apt 存储库替换 MySQL 的本机分发或替换由直接 deb 包安装的 Mysql server 下载中给出的说明进行操作。

  1. 添加 MySQL APT 存储库 首先, 将 MySQL APT 存储库添加到系统的软件存储库列表中。请按照下列步骤操作:
    1. 转到https://dev.mysql.com/downloads/repo/apt/的 MYSQL apt 存储库的下载页.
    2. 选择并下载 Linux 发行版的发行版包。
    3. 使用以下命令安装下载的版本包, 将version-specific-package-name替换为下载包的名称 (前面有其路径, 如果您不在包是):shell> sudo dpkg -i /PATH/version-specific-package-name.deb

例如, 对于包w.x.y-z --z, 该命令是:

shell> sudo dpkg -i mysql-apt-config_w.x.y-z_all.deb
shell> wget https://repo.mysql.com//mysql-apt-config_0.8.12-1_all.deb
shell> dpkg -i mysql-apt-config_0.8.12-1_all.deb

请注意, 相同的包适用于所有受支持的 Debian 和 Ubuntu 平台。

在包的安装过程中, 系统将要求您选择要安装的 MySQL 服务器和其他组件 (例如, MySQL 工作台) 的版本。如果您不确定要选择哪个版本, 请不要更改为您选择的默认选项。如果不希望安装特定组件, 也可以选择"无"。在选择所有组件后, 选择"确定"以完成发布包的配置和安装。

您可以随时更改以后版本的选择; 您可以随时更改以后对版本的选择。有关说明, 请参阅选择主要版本

使用以下命令更新 MySQL APT 存储库中的包信息 (此步骤是强制性的) ):

shell> sudo apt-get update

Instead of using the release package, you can also add and configure the MySQL APT repository manually; see Appendix A: Adding and Configuring the MySQL APT Repository Manually for details. Note

Once the MySQL APT repository is enabled on your system, you will no longer be able to install any MySQL packages from your platform's native software repositories until the MySQL APT repository is disabled.

Installing MySQL with APT

Install MySQL by the following command:

shell> sudo apt-get install mysql-server

This installs the package for the MySQL server, as well as the packages for the client and for the database common files.

During the installation, you are asked to supply a password for the root user for your MySQL installation. Important

Make sure you remember the root password you set. Users who want to set a password later can leave the password field blank in the dialogue box and just press Ok; in that case, root access to the server will be authenticated by Socket Peer-Credential Pluggable Authentication for connections using a Unix socket file. You can set the root password later using the program mysql_secure_installation.

Starting and Stopping the MySQL Server

The MySQL server is started automatically after installation. You can check the status of the MySQL server with the following command:

shell> sudo service mysql status

Stop the MySQL server with the following command:

shell> sudo service mysql stop

要重新启动 MySQL 服务器, 请使用以下命令:

shell> sudo service mysql start

注意

一些依赖于本机 MySQL 包的第三方本机存储库包可能无法与 MySQL APT 存储库包一起使用, 因此不应与它们一起使用;其中包括 akonadi-回端 mysql、handlakorket-myl-5.5 和 zoneminder。

选择主要版本

默认情况下, MySQL 服务器和其他所需组件的所有安装和升级都来自于在配置包安装过程中选择的主要版本的发行系列 (请参阅添加 MySQL apt 存储库)).但是, 您可以随时通过重新配置已安装的配置包切换到另一个受支持的主要版本系列。使用以下命令:

shell> sudo dpkg-reconfigure mysql-apt-config

然后, 对话框要求您选择所需的主要版本。进行选择, 然后选择"确定"。返回到命令提示符后, 使用以下命令更新 MySQL APT 存储库中的包信息:

shell> sudo apt-get update

下次使用 apt-get 安装命令时, 将安装选定系列中的最新版本。

您可以使用相同的方法更改要与 MySQL APT 存储库一起安装的任何其他 MySQL 组件的版本。

没有评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注