MySQL installation tutorial under Centos7

MySQL installation tutorial under Centos7

MySQL installation tutorial, for your reference, the specific content is as follows

1. Download

Go to the official website to download the Yum source: Address

2. Installation

rpm -ivh mysql57-community-release-el7-11.noarch.rpm
yum install MySQL-community-server

3. Connection Settings

• No password for initial installation
mysql -u root

• Set password
set password for 'root'@'localhost' =password('password');

#If the following error is reported

#Exit mysql connection and run the following command
mysql_upgrade -uroot -p

#Update the password prompt successfully again


• Set up remote connection

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • CentOS 7 installation of mysql5.5 and the command used to install mariadb
  • Install python2.7 +pip +mysqld under centos
  • How to install mysql5.5 on centos 7
  • How to install mysql server in CentOS 7
  • Compilation and installation of PHP7 under CentOS and support for MySQL and solutions to some common problems
  • MySQL 5.7.17 installation and configuration method graphic tutorial (CentOS7)
  • 64-bit CentOs7 source code installation mysql-5.6.35 process sharing
  • Centos6.5 compile and install mysql 5.7.14 detailed tutorial
  • Tutorial on installing MySQL 5.6.32 on CentOS7.2 virtual machine
  • Tutorial on installing mysql (MariaDB) under centos 7

<<:  How to enable MySQL remote connection in Linux server

>>:  Linux kernel device driver kernel time management notes

Recommend

How to uninstall and reinstall Tomcat (with pictures and text)

Uninstall tomcat9 1. Since the installation of To...

Share some tips on using JavaScript operators

Table of contents 1. Optional chaining operator [...

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

MySQL independent index and joint index selection

There is often a lack of understanding of multi-c...

Implementation of nginx worker process loop

After the worker process is started, it will firs...

Detailed explanation of Linux commands and file search

1. Perform file name search which (search for ...

Mysql transaction concurrency problem solution

I encountered such a problem during development A...

Optimizing query speed of MySQL with tens of millions of data using indexes

1. The role of index Generally speaking, an index...

Detailed steps for Spring Boot packaging and uploading to Docker repository

Important note: Before studying this article, you...

CentOS 8 Installation Guide for Zabbix 4.4

Zabbix server environment platform ZABBIX version...

Implementation of vue+drf+third-party sliding verification code access

Table of contents 1. Background 2. Verification p...

Solution to the problem of MySQL deleting and inserting data very slowly

When a company developer executes an insert state...

Two tools for splitting the screen in the Linux command line terminal

Here are two terminal split screen tools: screen ...