How to install MySQL Server on Centos 7 | MySQL Server 5.7
In this video you can find step by step how to Install MySQL Server 7 on CENTOS 7 Operating System, below you can find the steps
=========================================================
–Installation Of MySQL Server on Centos 7
yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
yum install mysql-community-server
grep ‘A temporary password’ /var/log/mysqld.log |tail -1
mysql -u root -ppassword
alter user ‘root’@’localhost’ identified by ‘password’;
service mysqld start
service mysqld status
centos 7