1

I'm trying to upgrade MySQL 5.5 to version 5.6 on my Ubuntu 12.04 LTS server. I've tried the following:

apt-get -y remove mysql-server
apt-get -y autoremove
apt-get -y install software-properties-common
add-apt-repository -y ppa:ondrej/mysql-5.6
apt-get update
apt-get -y install mysql-server

When I try this, I'm still left with version 5.5. Is there no simple way of upgrading in 12.04? Seriously need it for Magento 2! :(

1 Answers1

2

If I go to https://launchpad.net/~ondrej/+archive/ubuntu/mysql-5.6 I can see clearly that the package you're interested in is named mysql-5.6. So you could go ahead and

sudo apt-get install mysql-5.6

Packages from 3rd party repos don't have to follow the same naming convention as Ubuntu repos.

But as @Florian Diesch noticed, there are no packages for your Ubuntu version in that repo.

Cornelius
  • 9,483
  • 4
  • 40
  • 62