How to Install MySQL 8.0 Server on Linux CentOS – MySQL DBA Tutorial



How to Install MySQL 8.0 Server on Linux CentOS – MySQL DBA Tutorial

How to Install MySQL 8.0 Server on Linux CentOS - MySQL DBA Tutorial

How to Install MySQL 8.0 Server on Linux CentOS explains all the steps you need o take to install MySQL 8.0 Server on CentOS.

1) Download and add MySQL Yum Repository to Linux Repository

sudo wget https://repo.mysql.com/mysql80-community-release-el7-1.noarch.rpm

2) Install the downloaded package by using below command

sudo yum localinstall mysql80-community-release-el7-1.noarch.rpm

3) Verify that the MySQL Yum repository has been added successfully

sudo yum repolist enabled | grep “mysql.*-community.*”

4) Install latest MySQL

sudo yum install mysql-community-server

5) Start MySQL Server

sudo service mysqld start

sudo systemctl status mysqld

6) Secure MySQL Server
When MySQL 8.0 version is installed, temporary password for root is created
grep ‘temporary password’ /var/log/mysqld.log
get the password and then run below command.
mysql_secure_installation

To follow step by step tutorial for MySQL DBA for beginner to Advance
http://www.techbrothersit.com/2018/11/mysql-dba-tutorial-beginner-to-advance.html

MySQL Workbench Tutorial
MySQL DBA Certification Training
MySQL DBA Tutorial Step by Step
MySQL DBA Training online free
MySQL Real Time DBA Tutorial
MySQL Administration Course step by Step
MySQL Tools for Development and Admin

Comments are closed.