Diagram of the process from uninstallation to installation of MySQL 5.7.18 yum under Linux

Diagram of the process from uninstallation to installation of MySQL 5.7.18 yum under Linux

After a lot of trouble, I finally figured out the yum installation process. I wrote about binary package installation before. Here I use yum installation. The environment is the same, Centos7.2+MySQL5.7.18.

I referred to a lot of articles for each step, which will be listed one by one later. Since the machine has already been installed, I simply uninstalled it step by step and then reinstalled it.

This article uses a series of relatively copycat methods to achieve this, which is relatively easy to understand and accept for users like me who have not been in contact with Linux for a long time, such as directly downloading files under Windows and dragging them to the Linux system instead of downloading with the wget command, and directly using the editing function of the winscp editor instead of editing with the vim command.

uninstall

Operating system version

  rpm -qa | grep -i mysql
  Run the rpm -qa | grep -i mysql command to view the installed components. 

Use the yum -y remove command to uninstall the installed MySQL components. Use the following command to uninstall the components installed above.

yum -y remove mysql-community-libs-5.7.18-1.el7.x86_64
yum -y remove mysql-community-common-5.7.18-1.el7.x86_64
yum -y remove mysql-community-client-5.7.18-1.el7.x86_64
yum -y remove mysql57-community-release-el7-10.noarch
yum -y remove mysql-community-server-5.7.18-1.el7.x86_64

I won’t take more pictures, just one as an example.

Use rpm -qa | grep -i mysql again to view the installed components, which have been completely uninstalled.

whereis mysql queries the directories generated by the previous installation and removes them one by one.

Install

Download the MySQL repo source. As for what this file is used for, my personal understanding is that it automatically helps you configure the yum source of the MySQL installation component.

This file can be downloaded under Windows and then uploaded to the Linux server, or it can be downloaded directly on the Linux server and also needs to be installed.

After downloading this file, drag it to the root directory of the Linux server through winscp

The files downloaded above under Linux

Install the MySQL repo package

 rpm -ivh mysql57-community-release-el7-10.noarch.rpm 

There will be some simple prompts in the middle. After entering Y, everything will be installed automatically.

 yum install mysql-community-server 

Installation Complete

Change the initial root password

After installation, a my.cnf file will be generated under etc. Add a skip-grant-tables = 1 configuration in my.cnf to skip the initialization password verification requirement.

systemctl start mysql service

Connect to the MySQL service. Since the password requirement is skipped, enter mysql -u -p and press Enter. When prompted to enter the password, continue to press Enter to connect to MySQL.

Change MySQL Root Password

update user set authentication_string=PASSWORD('newpassword') where User='root'; 

Use this statement to modify the root user to have remote access, update user set host = '%' where user = 'root'

After restarting, you can log in and connect to MySQL using the pre-set password

The whole process is relatively simple. If you are familiar with it, it will only take a few minutes.

It doesn't take long to go through this process. It's just that I'm not familiar with it. I try it out while groping. If someone can guide me or I try it out more, it will be much easier.

You may also be interested in:
  • How to install MySQL on Ubuntu 18.04 (linux)
  • MySQL 8.0 installation tutorial under Linux
  • Detailed tutorial on the free installation version of MySQL 5.7.18 on Linux
  • MySQL 5.6.28 installation and configuration tutorial under Linux (Ubuntu)
  • Detailed tutorial on installing MySQL 5.7.17 on Oracle Linux 6.8
  • Detailed tutorial on how to install MySQL 5.7.18 in Linux (CentOS 7) using YUM
  • Install MySQL 5.7 on Ubuntu 18.04
  • Detailed tutorial on how to install mysql8.0 using Linux yum command
  • MySQL 8.0.15 installation and configuration graphic tutorial and password change under Linux
  • Complete steps to install MySQL 8.0.x on Linux

<<:  A simple way to restart QT application in embedded Linux (based on QT4.8 qws)

>>:  Vue project realizes paging effect

Recommend

Example of using swiper plugin to implement carousel in Vue

Table of contents vue - Use swiper plugin to impl...

Introduction to the use and difference between in and exists in MySQL

First put a piece of code for(int i=0;i<1000;i...

11 common CSS tips and experience collection

1. How do I remove the blank space of a few pixels...

How to build a deep learning environment running Python in Docker container

Check virtualization in Task Manager, if it is en...

Three ways to share component logic in React

Without further ado, these three methods are: ren...

MySQL data type optimization principles

MySQL supports many data types, and choosing the ...

How to install PostgreSQL and PostGIS using yum on CentOS7

1. Update the yum source The PostgreSQL version o...

HTML+css to create a simple progress bar

1. HTML code Copy code The code is as follows: Ex...

How to set Tomcat as an automatically started service? The quickest way

Set Tomcat to automatically start the service: I ...

Viewing and analyzing MySQL execution status

When you feel that there is a problem with MySQL ...

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

Docker uses root to enter the container

First run the docker container Run the command as...

How does the MySQL database implement the XA specification?

MySQL consistency log What happens to uncommitted...