如何在ubuntu 16.04中安装mysql V8?

如何在ubuntu 16.04中安装mysql V8?

我正在关注本教程为了在我的 Ubuntu 16.04 中安装 MySql 版本 8.x。

在执行第二步之前,应该会提示我使用列表中的 mysql 8-0 配置哪个版本。但我只获得了 5.7 版本,如下图所示: 在此处输入图片描述

如果我完成最后一步,它将安装版本 5.7。

如何安装8.x版本?

注意:之前我已经安装了 MariaDb,然后我这介入命令卸载。

sudo apt-get remove mariadb-server

更新

事实上,本教程中没有提到——我们应该接受 mysql 5.7。在下一个窗口中,我们将被要求更改为 mysql 8.x。请参见视频

答案1

wget https://dev.mysql.com/get/mysql-apt-config_0.8.10-1_all.deb
dpkg -i mysql-apt-config_0.8.10-1_all.deb

apt-get update
apt-get install mysql-server

附有圖片:https://www.percona.com/blog/2018/05/14/installing-mysql-8-on-ubuntu-16-04-lts/

答案2

确保你安装的是版本 8。你可以下载它这里,或者通过终端执行以下操作:

wget https://dev.mysql.com/get/mysql-apt-config_0.8.10-1_all.deb.

导航到.deb下载包的位置并在终端中运行以下命令:

sudo dpkg -i mysql-apt-config_0.8.10-1_all.deb

您将收到一个配置提示...只需选择“确定”即可。

由于存储库已安装,请运行以下命令进行安装:

sudo apt update
sudo apt install mysql-server mysql-client

最新版本的 MySQL 将安装在您的系统上。安装过程中,系统将提示您创建并确认 MySQL 根密码。

图片1

您可以确认是否要使用新的密码加密功能……“推荐”。

图片2

按照以下步骤操作后,MySQL 应该已经安装在你的系统中!


此外:

您可以通过运行以下命令登录:

sudo mysql -u root -p

这将带您进入 MySQL 欢迎屏幕,例如:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.11 MySQL Community Server - GPL

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

相关内容