Tutorial diagram of installing mysql8.0.18 under linux (Centos7)

Tutorial diagram of installing mysql8.0.18 under linux (Centos7)

1 Get the installation resource package mysql-8.0.18-1.el7.x86_64.rpm-bundle.tar

Link: https://pan.baidu.com/s/1hJRNvEdOpoVf4_zNtjRaIA

Extraction code: rsif

2 Create a new directory mysql8 in the /usr/local directory

cd /usr/local
mkdir mysql

3 Upload the downloaded resource package (mysql-8.0.18-1.el7.x86_64.rpm-bundle.tar) to the usr/local/mysql8 directory and decompress it.

tar -xvf mysql-8.0.18-1.el7.x86_64.rpm-bundle.tar 

insert image description here

4 rpm -qa | grep mariadb command to view the installation package of mariadb 5 rpm -e mariadb-libs-5.5.60-1.el7_5.x86_64 --nodeps uninstall mariadb

rpm -e mariadb-libs-5.5.60-1.el7_5.x86_64 --nodeps

6 Install in sequence

mysql-community-common-8.0.15-1.el7.x86_64.rpm,
mysql-community-libs-8.0.18-1.el7.x86_64.rpm
mysql-community-client-8.0.18-1.el7.x86_64.rpm
mysql-community-server-8.0.18-1.el7.x86_64.rpm

rpm -ivh mysql-community-common-8.0.15-1.el7.x86_64.rpm 
 rpm -ivh mysql-community-libs-8.0.18-1.el7.x86_64.rpm
 rpm -ivh mysql-community-client-8.0.18-1.el7.x86_64.rpm
 rpm -ivh mysql-community-server-8.0.18-1.el7.x86_64.rpm

7 View installed resources

rpm -qa | grep mysql 

insert image description here

8 Initialization

mysqld --initialize Initialize chown mysql:mysql /var/lib/mysql -R Authorize systemctl start mysqld Start mysql service systemctl status mysqld View mysql status cat /var/log/mysqld.log | grep password View root initial password 

insert image description here

10 Log in to mysql as root user and change the root user password

mysql -u root -p #After pressing Enter, enter the initial password, which is Iv7fjuP,ucH+ (fill in your own password)

ALTER USER "root"@"localhost" IDENTIFIED BY "your own password";
FLUSH PRIVILEGES; #Effective immediately 

insert image description here

Log in again as root and enter the password you just changed.

11 Remote Connection

use mysql;
update user set host = '%' where user = 'root'; 
ALTER USER 'root'@'%' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #Change the encryption method ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'your own password'; #Update the user password (here I am root) 

insert image description here

Connection successful

References

https://www.jb51.net/article/166632.htm

https://www.jb51.net/article/141578.htm

Summarize

The above is the tutorial illustration of installing mysql8.0.18 under linux (Centos7) introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to install MySQL 8.0.13 in Alibaba Cloud CentOS 7
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Tutorial on installing mysql8 on linux centos7
  • CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions
  • Detailed steps to install MYSQL8.0 on CentOS7.6
  • CentOS7 enables MySQL8 master-slave backup and daily scheduled full backup (recommended)
  • Detailed tutorial on installing MySQL 8.0 from source code on CentOS 7.4
  • Installation tutorial of mysql8.0rpm on centos7
  • Centos7 installation of MySQL8 tutorial

<<:  WeChat applet realizes the function of uploading pictures

>>:  Sample code for installing Jenkins using Docker

Recommend

How to add color mask to background image in CSS3

Some time ago, during development, I encountered ...

uniapp dynamic modification of element node style detailed explanation

Table of contents 1. Modify by binding the style ...

Simple usage of MySQL temporary tables

MySQL temporary tables are very useful when we ne...

Solution to the problem of repeated pop-up of Element's Message pop-up window

Table of contents 1. Use 2. Solve the problem of ...

How to quickly create tens of millions of test data in MySQL

Remark: The amount of data in this article is 1 m...

5 VueUse libraries that can speed up development (summary)

Table of contents What utilities does VueUse have...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

CentOS7 firewall and port related commands introduction

Table of contents 1. Check the current status of ...

MySQL transaction concepts and usage in-depth explanation

Table of contents The concept of affairs The stat...

mysql wildcard (sql advanced filtering)

Table of contents First, let's briefly introd...

Detailed analysis of when tomcat writes back the response datagram

The question arises This question arose when I wa...

How to use stored procedures in MySQL to quickly generate 1 million records

Preface When testing, in order to test the projec...

Three ways to avoid duplicate insertion of data in MySql

Preface In the case of primary key conflict or un...

js implements form validation function

This article example shares the specific code of ...