1. Download the YUM library
shell> wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
2. Install YUM library
shell> yum localinstall -y mysql57-community-release-el7-7.noarch.rpm
3. Install Database
shell> yum install -y mysql-community-server
4. Start MySQL service
shell> systemctl start mysqld.service
5. The default blank password
shell> mysql -uroot -p
6. Reset the root password to restart the mysql service
shell> update mysql.user […]
Recent Comments