Linux serverNETWORK ADMINISTRATIONS

MySQL 8 YUM Installation on Centos 8 | MySQL Tutorial 1 for beginners

The vlog describes the MySQL 8 installation steps on the el8 based systems ( RHEL 8 / Centos 8 ). Below I am sharing the step by step guidence. if you have any questions, feele free to reach me.

1. download the YUM repo ( https://dev.mysql.com/downloads/repo/yum/ )

— wget https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm

2. Install the repository RPM package

— yum localinstall mysql80-community-release-el8-1.noarch.rpm

3. Disabled the MySQL module

— yum module disable mysql

4. Installing the MySQL-Community-server package

— yum install mysql-community-server

5. verify the installation

— yum list installed | grep -i mysql

6. start the MySQL service

— service mysqld start

source

centos 8

11 thoughts on “MySQL 8 YUM Installation on Centos 8 | MySQL Tutorial 1 for beginners

Comments are closed.