Detailed instructions for installing mysql5.7 database under centos7.2

Detailed instructions for installing mysql5.7 database under centos7.2

The mysql on the server is installed with version 8.0.12, and the local one is version 5.7. Today I deleted the 5.7 version and reinstalled it. Below are all the commands to follow and it will be installed.

Configuration Source

wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
yum localinstall mysql57-community-release-el7-8.noarch.rpm
# yum repolist enabled | grep "mysql.*-community.*"

Install:

yum install mysql-community-server

Start mysql

systemctl start mysqld

Automatic startup

systemctl enable mysqld
systemctl daemon-reload

Get the initial password

grep 'temporary password' /var/log/mysqld.log
UjmO#ZA9nt,Y

Change the root password (need to log in to mysql)

mysql -u root -p
set global validate_password_policy=0;
set global validate_password_length=1;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'admin';

Authorize other accounts to log in remotely

CREATE USER 'admin'@'%' IDENTIFIED BY 'admin';
GRANT ALL ON *.* TO 'admin'@'%';
flush privileges

Summarize

The above is the detailed command for installing mysql5.7 database under centos7.2 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:
  • Detailed tutorial on compiling and installing MySQL 5.7.24 on CentOS7
  • How to install MySQL via SSH on a CentOS VPS
  • MySQL 8.0.13 installation and configuration tutorial under CentOS7.3
  • How to install mysql via yum on centos7
  • The easiest way to install MySQL 5.7.20 using yum in CentOS 7
  • Detailed tutorial on installing mysql 8.0.13 (rpm) on Centos7
  • Detailed tutorial on installing MySQL 8.0 from source code on CentOS 7.4
  • Installation tutorial of mysql8.0rpm on centos7
  • How to install MySQL 5.7 from source code in CentOS 7 environment
  • Tutorial on installing lnmp using yum on centos7 (linux+nginx+php7.1+mysql5.7)
  • A concise tutorial on how to install mysql5.7 decompressed version on CentOS7
  • Centos7 installation and configuration of Mysql5.7

<<:  How to import Excel files into MySQL database

>>:  Implementation of Vue3 style CSS variable injection

Recommend

React uses routing to redirect to the login interface

In the previous article, after configuring the we...

Implementation of nacos1.3.0 built with docker

1. Resume nacos database Database name nacos_conf...

Detailed explanation of the use of the clip-path property in CSS

Use of clip-path polygon The value is composed of...

Brief introduction and usage of Table and div

Web front end 1 Student ID Name gender age 01 Zha...

HTML table markup tutorial (37): background image attribute BACKGROUND

Set the background image for the table header. Yo...

How to start and stop SpringBoot jar program deployment shell script in Linux

Without further ado, let me give you the code. Th...

Vue data responsiveness summary

Before talking about data responsiveness, we need...

Why should the number of rows in a single MySQL table not exceed 5 million?

Today, let’s discuss an interesting topic: How mu...

MySQL5.7.21 decompressed version installation detailed tutorial diagram

Since I often install the system, I have to reins...

Native JS to implement image carousel JS to implement small advertising plug-in

Recently I want to use native JS to implement som...

8 Reasons Why You Should Use Xfce Desktop Environment for Linux

For several reasons (including curiosity), I star...

How to connect JDBC to MySQL 5.7

1. First prepare the MySQL and Eclipse environmen...

Vue implements chat interface

This article example shares the specific code of ...

Detailed explanation of how to copy and backup docker container data

Here we take the Jenkins container as an example ...