Facebook Twitter Instagram
    TecAdmin
    • Home
    • Ubuntu 20.04
      • Upgrade Ubuntu
      • Install Java
      • Install Node.js
      • Install Docker
      • Install LAMP Stack
    • Tutorials
      • AWS
      • Shell Scripting
      • Docker
      • Git
      • MongoDB
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    Home»Databases»MySQL»How to Install MySQL 5.7 on CentOS/RHEL 7/6, Fedora 27/26/25

    How to Install MySQL 5.7 on CentOS/RHEL 7/6, Fedora 27/26/25

    RahulBy RahulOctober 14, 20134 Mins ReadUpdated:December 6, 2017

    MySQL community has released MySQL 5.7 Release. Its available on MySQL official website. For this article We are using CentOS 7.2, 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.

    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 official website. Use on of below command as per your operating system version.

    -- On CentOS and RHEL 7 -- 
    yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
    
    -- On CentOS and RHEL 6 -- 
    yum localinstall https://dev.mysql.com/get/mysql57-community-release-el6-9.noarch.rpm
    
    -- On Fedora 27 -- 
    dnf install https://dev.mysql.com/get/mysql57-community-release-fc27-9.noarch.rpm
    
    -- On Fedora 26 -- 
    dnf install https://dev.mysql.com/get/mysql57-community-release-fc26-9.noarch.rpm
    
    -- On Fedora 25 -- 
    dnf install https://dev.mysql.com/get/mysql57-community-release-fc25-9.noarch.rpm
    

    Step 2 – Install MySQL 5.7 Server

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

    On CentOS and RHEL 7/6

    yum install mysql-community-server
    

    On Fedora 27/26/25:

    # dnf install mysql-community-server
    

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

    Get Temporary root Password:

    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
    

    #3. Start MySQL Service

    After installing rpms use following command to start MySQL Service.

    service mysqld start
    

    #4. Initial MySQL Configuration

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

    /usr/bin/mysql_secure_installation
    

    This wizzard will prompt you for inputs. Input new strong password for MySQL root account. For remaining options read option and provide input as required. We recommend to pree ‘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 – 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 -h localhost -u root -p 
    

    After login to MySQL server create a test database using following command.

    PgSQL
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    /* 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
    
    mysql  Ver 14.14 Distrib 5.7.17, for Linux (x86_64) using  EditLine wrapper
    
    database Install MySQL MySQL MySQL 5.7
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp
    Previous ArticleTop 15 System and Performance Monitoring Tools for Linux
    Next Article How to Install Apache ActiveMQ on CentOS/RHEL 7

    Related Posts

    How To Install Linux, Nginx, MySQL, & PHP (LEMP Stack) on Ubuntu 22.04

    Updated:April 7, 20227 Mins Read

    How To Install MySQL Server on Ubuntu 22.04

    Updated:April 6, 20224 Mins Read

    How To Install LAMP Stack on Ubuntu 22.04 LTS

    Updated:April 20, 20225 Mins Read

    How To Install MariaDB on Debian 11

    4 Mins Read

    How to Install Redis on Debian 11 Linux

    Updated:September 16, 20213 Mins Read

    How to Check the PostgreSQL Version

    Updated:August 6, 20212 Mins Read

    8 Comments

    1. suraj chaurasia on March 22, 2022 12:37 pm

      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

      Reply
      • Abdul Qayyum on March 27, 2022 1:27 pm

        Hi,
        Try
        #rpm –import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
        After that try to install it will work…

        Reply
    2. wesley on December 26, 2019 5:14 am

      To get the temporary password you first need to start the mysql server.

      Reply
    3. Vishal on February 9, 2019 5:34 am

      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

      Reply
      • Oscar Toro on July 3, 2019 6:44 pm

        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.

        Reply
    4. Vyom on March 30, 2017 4:09 am

      Thanks for step by step installation.

      Reply
    5. rishikesh on July 9, 2015 5:15 am

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

      The new download URLs is as follows

      wget

      wget

      wget

      Reply
    6. Roy on February 11, 2014 9:33 am

      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

    Leave A Reply Cancel Reply

    Recent Posts
    • How to Enable / disable Firewall in Windows
    • How to Install JAVA on Ubuntu 22.04
    • Switching Display Manager in Ubuntu – GDM, LightDM & SDDM
    • Changing the Login Screen Background in Ubuntu 22.04 & 20.04
    • How To Install PHP (8.1, 7.4 or 5.6) on Ubuntu 22.04
    Facebook Twitter Instagram Pinterest
    © 2022 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.