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.

Advertisement

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 root@localhost: 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.

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.

Share.

10 Comments

  1. this is wrong, the temporary root password is not providen until you start the mysql service for the first time

  2. getting error while installing mysql-community-server after enabling repo

    step2:
    error: Public key for mysql-community-libs-5.7.37-1.el7.x86_64.rpm is not installed

    Failing package is: mysql-community-libs-5.7.37-1.el7.x86_64
    GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

  3. I have tried to install the mysql on cent os 7, as per you mention, when i start the mysql service is gives me an error:

    Job for mysqld.service failed because the control process exited with error code. See “systemctl status mysqld.service” and “journalctl -xe” for details.

    Can you please help to resolve this.

    Thank you

    • You probably have SELinux issues… you can try something like:
      semanage fcontext -a -t mysqld_db_t “{mysqlHome}/mysql(/.*)?”
      restorecon -v -R ${mysqlHome}/mysql

      where ${mysqlHome} is your mysql root folder (check the datadir value in your my.cnf)
      I think it defaults to /var/lib

      This sort of issue usually happens if you try to install to a different partition because you don’t want to fill up your main one.

  4. Your given urls are not working so please use the following URLs

    The new download URLs is as follows

    wget

    wget

    wget

  5. Tried tutorial above and success installing mysql server 5.7

    To check mysql server status:

    # service mysql status
    SUCCESS! MySQL running (10165)

    (it is not mysqld FYI)
    Usage: mysql {start|stop|restart|reload|force-reload|status} [ MySQL server options ]

Reply To Roy Cancel Reply

Exit mobile version