
Admin
Helpdice Team
How to install MySQL-Server in Linux OS
Install latest MySql Server
a) Download the latest rpm file using the following command:
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm

b) Add rpm file to the repository using the following command:
rpm -ivh mysql-community-release-el7-5.noarch.rpm

c) Install MySQL using the yum command:
yum install mysql-server

If all things went right then you will get the following message on screen.

We can also check feather the mysql server is installed or not using the version command:
mysql --version

This will represent that our installation is complete.
Thank You