How to Install MySQL 5.7 on CentOS 7 & Fedora 36/35

Channel: Linux
Abstract: MySQL stores the root account password in log fileYou have successfully installed MySQL 5.7. Let login to MySQL using root access and try to create a

MySQL community has released MySQL 5.7 Release. Its available on MySQL official website. For this article We are using CentOS 7.9, 64 Bit System. For other Operating system version (Like: windows) you may download files from here. Also change the rpm names in all given commands in this tutorial.

This blog post will help you to install MySQL Server 5.7 on your CentOS 6 and Fedora systems.

Step 1 – Enable MySQL Repository

First of all, You need to enable MySQL 5.7 community release yum repository on your system. The rpm packages for yum repository configuration are available on MySQL’s official website.

First of all, import the latest MySQL GPG key to your system.

sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 

Now, use one of the below commands to configure the Yum repository as per your operating system version.

  • On CentOS & RHEL 7:
    sudo yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 
    
  • On Fedora 36
    sudo dnf install https://dev.mysql.com/get/mysql57-community-release-fc27-11.noarch.rpm 
    
  • On Fedora 35
    sudo dnf install https://dev.mysql.com/get/mysql57-community-release-fc26-11.noarch.rpm 
    
Step 2 – Installing MySQL 5.7 Server

As you have successfully enabled MySQL yum repository on your system. Now, install MySQL 5.7 community server using the following commands as per your operating system version.

  • On CentOS & RHEL 7:
    sudo yum install mysql-community-server 
    
  • On Fedora 36/35:
    sudo dnf install mysql-community-server 
    

The above command will install the MySQL community server and other dependencies on your system. During the installation process of packages, a temporary password is created and logged to MySQL log files. Use the following command to find your temporary MySQL password.

After installing RPMs, use the following command to start MySQL Service.

sudo systemctl start mysqld 

During the first start, MySQL stores the root account password in log file, That can be found with the followign command.

grep 'A temporary password' /var/log/mysqld.log |tail -1 

Sample output:

2017-03-30T02:57:10.981502Z 1 [Note] A temporary password is generated for [email protected]: Nm(!pKkkjo68e
Step 4 – MySQL Initial Configuration

Execute mysql_secure_installation script and follow the wizard. It will prompt for the root password. Use the temporary root password got in the above step.

/usr/bin/mysql_secure_installation 

This wizard will prompt you for inputs. Input a new strong password for the MySQL root account. For remaining options read the option and provide input as required. We recommend pressing ‘y’ to all for better security.

Securing the MySQL server deployment.

Enter password for user root: **********

The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Using existing password for root.

Estimated strength of the password: 100
Change the password for root ? ((Press y|Y for Yes, any other key for No) : y

New password: ******************

Re-enter new password: ******************

Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.


Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done!
Step 5 – Login to MySQL

Congratulations! You have successfully installed MySQL 5.7. Let login to MySQL using root access and try to create a dummy database. Use the password you have assigned to Step #4.

mysql -u root -p 
Output
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

After login into the MySQL server, let’s create a database and user account with the following commands.

/* CREATE NEW DATABASE */ mysql> CREATE DATABASE mydb; /* CREATE MYSQL USER FOR DATABASE */ mysql> CREATE USER 'db_user'@'localhost' IDENTIFIED BY 'password'; /* GRANT Permission to User on Database */ mysql> GRANT ALL ON mydb.* TO 'db_user'@'localhost'; /* RELOAD PRIVILEGES */ mysql> FLUSH PRIVILEGES;1234567891011/* CREATE NEW DATABASE */mysql> CREATE DATABASE mydb; /* CREATE MYSQL USER FOR DATABASE */mysql> CREATE USER 'db_user'@'localhost' IDENTIFIED BY 'password'/* GRANT Permission to User on Database */mysql> GRANT ALL ON mydb.* TO 'db_user'@'localhost'/* RELOAD PRIVILEGES */mysql> FLUSH PRIVILEGES;

Step 6 – Check MySQL Version

Verify your MySQL version installed on your system. The following command will display installed MySQL version.

 mysql -V
Output
mysql  Ver 14.14 Distrib 5.7.38, for Linux (x86_64) using  EditLine wrapper
Conclusion

In this tutorial, you have learned to install MySQL 5.7 on CentOS 7 and Fedora Linux systems.

Ref From: tecadmin

Related articles