How to Install MySQL 5.7 or 5.6 or 5.5 on Ubuntu, Debian & LinuxMint
This article will help you for installing MySQL 5.7 or 5.6 or 5.6 on Ubuntu, Debian and LinuxMint systems.
Use one of following installation steps as per your requirement of MySQL version. Install process will prompt you for inpur password twice. This will be root account password for your MySQL install.
Install MySQL 5.7
Use the following commands to install or upgrade MySQL 5.7 on your Ubuntu, Debian or LinuxMint systems. At the last update of this tutorial MySQL 5.7.9 is latest available MySQL release.
$ sudo apt-getinstall software-properties-common $ sudoadd-apt-repository -y ppa:ondrej/mysql-5.7 $ sudo apt-getupdate $ sudo apt-getinstall mysql-server
Install MySQL 5.6
Use the following commands to install or upgrade MySQL 5.6 on your Ubuntu or LinuxMint systems. Currently this is the most popular version used.
$ sudo apt-getinstall software-properties-common $ sudoadd-apt-repository -y ppa:ondrej/mysql-5.6 $ sudo apt-getupdate $ sudo apt-getinstall mysql-server
Verify installed version
rahul@hackthesec:~$mysql --version mysql Ver 14.14 Distrib 5.6.19, for debian-linux-gnu (x86_64) using EditLine wrapper
Install MySQL 5.5
Use the following commands to install MySQL 5.5 on your Ubuntu or LinuxMint systems. If not specifically required, we recommend to use higher version of MySQL than 5.5.
$ sudo apt-getinstall software-properties-common $ sudoadd-apt-repository -y ppa:ondrej/mysql-5.5 $ sudo apt-getupdate $ sudo apt-getinstall mysql-server
0 comments:
Post a Comment