Skip to content

Instantly share code, notes, and snippets.

@mmastoras
Created November 13, 2017 22:52
Show Gist options
  • Save mmastoras/6e2fe61d108c69a4894a0bd59883cd4a to your computer and use it in GitHub Desktop.
Save mmastoras/6e2fe61d108c69a4894a0bd59883cd4a to your computer and use it in GitHub Desktop.
uninstall mysql5.7 and install mysql 5.6 client only on ubuntu 1604
sudo apt-get remove --purge mysql-server mysql-client mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
dpkg -l | grep mysql
sudo apt-get install mysql-client-core-5.6
sudo apt-get update
sudo add-apt-repository -y ppa:ondrej/mysql-5.6
sudo apt-get update
sudo apt-get install mysql-client-core-5.6
dpkg -l | grep mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment