CentOS7.5 installation tutorial of MySQL

CentOS7.5 installation tutorial of MySQL

1. First check whether the system has mysql installed

rpm -qa | grep mysql

2. Download the mysql repo source (5.7)

wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm

If the error is: -bash: wget: command not found

Install the plugin   yum -y install wget

3. Install mysql-community-release-el7-5.noarch.rpm package

sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm

4. Install MySQL

sudo yum install mysql-server

5. Reset MySQL password

Check the running status of MySQL, as shown in the figure:

systemctl status mysqld.service

At this point, MySQL has started running normally, but to enter MySQL, you must first find out the password of the root user. You can find the password in the log file using the following command:

grep "password" /var/log/mysqld.log

Enter the database using the following command:

mysql -uroot -p

Enter the initial password (Es9akjRtrd<4 at the end of the picture above). You cannot do anything at this time because MySQL requires you to change the password before you can operate the database:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password';

Replace 'new password' with the password you want to set. Note: The password must contain uppercase and lowercase letters, numbers, and special symbols (,/';:, etc.), otherwise the configuration will fail.

6. Restart MySQL service

service mysqld restart

Then set the remote connection password for the Root account. Both the account and password are root.

 mysql -u root -p

GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY " your password ";

Restart the server

service mysqld restart

7. Use external network tools to connect to MySQL

The username and password to connect to mysql are both root

Turn off firewall

systemctl stop firewalld.service

This is the end of this article about installing MySql on CentOS7.5. For more information about installing MySql on CentOS7.5, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions
  • CentOS7.5 uses mysql_multi to install MySQL5.7.28 multiple instances (detailed explanation)
  • Centos7.5 installs mysql5.7.24 binary package deployment

<<:  Let's learn about JavaScript object-oriented

>>:  How to use MySQL group by and order by together

Recommend

How to simply configure multiple servers in nginx

1: I won’t go into the details of how to install ...

Steps to deploy ingress-nginx on k8s

Table of contents Preface 1. Deployment and Confi...

How to clean up Alibaba Cloud MySQL space

Today I received a disk warning notification from...

Detailed explanation of pure SQL statement method based on JPQL

JPQL stands for Java Persistence Query Language. ...

Detailed explanation of how to use the Vue license plate input component

A simple license plate input component (vue) for ...

Nginx Location directive URI matching rules detailed summary

1. Introduction The location instruction is the c...

Solution to 1045 error in mysql database

How to solve the problem of 1045 when the local d...

JavaScript to implement the aircraft war game

This article shares with you how to use canvas an...

Solution to the impact of empty paths on page performance

A few days ago, I saw a post shared by Yu Bo on G...

How to install and configure GitLab on Ubuntu 20.04

introduce GitLab CE or Community Edition is an op...

Detailed explanation of several ways to create a top-left triangle in CSS

Today we will introduce several ways to use CSS t...

How to transfer files between Docker container and local machine

To transfer files between the host and the contai...

Detailed explanation of the use of React.cloneElement

Table of contents The role of cloneElement Usage ...

Complete steps to quickly configure HugePages under Linux system

Preface Regarding HugePages and Oracle database o...