Como atualizar o Mysql de 5.5 para 5.7?

1

Eu instalei o mysql agora usando:

sudo apt-get install mysql-server

Sua versão é:

mysql --version
mysql  Ver 14.14 Distrib 5.5.55, for debian-linux-gnu (x86_64) using readline 6.3

agora como posso atualizá-lo para 5,7?

    
por lily 15.05.2017 / 09:52

1 resposta

1

Como instalar o servidor MySQL 5.6 ou 5.7 no Debian 7 e 8

How to install MySQL server 5.6 or 5.7 on Debian 7 and 8

Debian provides MySQL server 5.5 with both wheezy and jessie but the latest GA (Generally Available) releases are 5.6 and 5.7 with some enhancements and added features, including support for InnoDB Full-text search.

Here’s how to install MySQL server 5.6 or 5.7 on Debian based Linux distros (including wheezy, jessie and Ubuntu):

  1. Download the MySQL APT repository config tool (you can see more details here: http://dev.mysql.com/downloads/repo/apt/)

    wget http://dev.mysql.com/get/mysql-apt-config_0.7.3-1_all.deb

  2. Install the MySQL APT repository config tool

    dpkg -i mysql-apt-config_0.7.3-1_all.deb

You will be asked to select product and version that you want to install. In the first step, select Server and next select either mysql-5.6 or mysql-5.7. Then click Apply.

  1. Update APT

    apt-get update

  2. Install the server

    apt-get install mysql-community-server

    
por 15.05.2017 / 10:05