MySQL 5.7.27 installation and configuration method graphic tutorial

MySQL 5.7.27 installation and configuration method graphic tutorial

MySQL 5.7.27 detailed download, installation and configuration tutorial for your reference, the specific contents are as follows

Preface

You will encounter many problems when installing MySQL. There are many solutions to the problems on the blog. Here I attach some links. Friends who encounter problems can read them for reference. This article is mainly aimed at newbies who are new to the database to install the MySQL database. Currently, the official website has MySQL versions 5.5, 5.6, 5.7 and 8. When developing, we usually choose 1 to 2 versions lower than the latest version, so I chose 5.7 as the database to be installed.

1. Download steps Visit the official website: https://www.mysql.com/

Select Community under Downloads

Download the corresponding version and click on MySQL Community Server in the figure above to enter the download interface:

Find the link for MySQL Community Server 5.7 and click on it:

Choose to download the corresponding ZIP file according to the version of your computer. My computer is 64-bit, so I choose this to download. Click Download to enter the following interface:

Click No thanks, just start my download , and then start downloading

After downloading, unzip the file to the disk and directory you want to save it to. I unzipped the file to the E:\Program Files\MySQL directory.

The above completes all the downloading work.

2. Configure environment variables System -> Advanced System Settings -> Environment Variables -> System Variables

Click New , name the variable: MYSQL_HOME , add the location of your mysql-5.7.27-winx64 folder.

Mine is in E:\Program Files\Mysql\mysql-5.7.27-winx64 , as shown in the figure:

Edit Path and copy ;%MYSQL_HOME%\bin to the end of the original value, as shown in the figure:

3.

Configuring the my.ini file

Create a new my.ini file in your mysql-5.7.27-winx64 directory. I created it in the E:\Program Files\Mysql\mysql-5.7.27-winx64 directory. The content of the my.ini file is:

[mysqld]
#Port number port = 3306
#mysql-5.7.27-winx64 path basedir=E:\Program Files\Mysql\mysql-5.7.27-winx64
#mysql-5.7.27-winx64 path + \data
datadir=E:\Program Files\Mysql\mysql-5.7.27-winx64\data 
#Maximum number of connections max_connections=200
#Encoding character-set-server=utf8

default-storage-engine=INNODB

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

[mysql]
#Encoding default-character-set=utf8 

After the creation is complete, proceed to the next step.

4. Install MySQL

1. Enter cmd in the input box and run it as an administrator . Note that you must run it as an administrator . Otherwise, during the installation process, the error "Install/Remove of the Service Denied!" will appear due to insufficient administrative privileges. This is very important!

In cmd , go to the E:\Program Files\Mysql\mysql-5.7.27-winx64\bin directory:

Enter the installation command: mysqld -install . If Service successfully installed appears, the installation is successful . If Install of the Service Denied appears, it means that the cmd is not run with administrator privileges:

Then continue to enter the command: mysqld --initialize , there will be no prompt at this time:

Enter the startup command again: net start mysql , and the following prompt will appear to prove that MySQL has started successfully:

5. Set MySQL password

1. Setting a password here is mainly to solve the problem of ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

2. First stop the MySQL service, enter the command line net stop mysql :

3. Find my.ini in the E:\Program Files\Mysql\mysql-5.7.27-winx64 directory, add skip-grant-tables to any line under the [mysqld] field, and save it:

4. Restart MySQL and enter the startup command: net start mysql . The following prompt appears, indicating that MySQL has been successfully started:

Enter the command mysql -u root -p without entering a password, just press Enter:

Entering MySQL successfully! Haha, it’s worth being happy after reaching this step!

5. Enter the command line use mysql to enter the database:

6. Enter the command line update update user set authentication_string=password("xxxxxx") where user="root"; xxxxxx is the new password you set. If the following message appears after pressing Enter, it proves that the modification is successful!

7. Manually stop the MySQL service, enter service in the win10 search bar and find MySQL . Right click and click Stop.

Then delete the skip-grant-tables line in the my.ini file just now, save and close.

8. Start cmd again (as administrator), enter the startup command: net start mysql , then enter mysql -u root -p , and then enter the password you just set. The following information will appear to prove that the setting is successful!

Then enter the command line use mysql to verify it, and the result is an error:

Since you haven't reset your password yet, reset it.

Type the command line alter user user() identified by "xxxxxx"; My password is 123456, so I type alter user user() identified by "123456"; Press Enter! Getting closer and closer to victory!

Enter the command line use mysql again to verify, success!

Summarize

Including the time I spent writing the blog, it took me about 4 hours to install this database. The reason is that I encountered many problems during the installation. I will summarize them here and attach the solution links:

1. The my.ini file cannot be found

2.ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

3.ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES)

4.Unknown column 'password' in 'field list'

5.You must reset your password using ALTER USER statement before executing this statement

There were many errors in the installation and configuration. I uninstalled it every time I made a mistake. I wanted to give up at one point. Thanks to my persistence, I finally conquered the installation and configuration of MySQL. I am about to start the journey of learning MySQL. I believe this is not an easy road, but I also believe that I can stick to it!

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.7 installation tutorials for various versions

MySQL 5.6 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

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:
  • MySQL 5.7.30 Installation and Upgrade Issues Detailed Tutorial
  • Detailed steps to install MySQL 5.7 via YUM on CentOS7
  • Detailed graphic and text tutorial on downloading, installing and configuring mysql-5.7.28 under Windows
  • Tutorial on installing MySQL 5.7.28 on CentOS 6.2 (mysql notes)
  • MySQL5.7.27-winx64 version win10 download and installation tutorial diagram
  • MySQL 5.7 installation and configuration tutorial under CentOS7 64 bit
  • MySQL 5.7.33 installation process detailed illustration

<<:  jQuery implements the bouncing ball game

>>:  Linux firewall status check method example

Recommend

A brief discussion on several ways to implement front-end JS sandbox

Table of contents Preface iframe implements sandb...

VMware ESXi 5.5 deployment and configuration diagram process

Table of contents 1. Installation requirements 2....

Realization of real-time file synchronization between Linux servers

Usage scenarios For existing servers A and B, if ...

What is TypeScript?

Table of contents 1. JavaScript issues 2. Advanta...

Docker Swarm from deployment to basic operations

About Docker Swarm Docker Swarm consists of two p...

Detailed explanation of react setState

Table of contents Is setState synchronous or asyn...

Sharing experience on MySQL slave maintenance

Preface: MySQL master-slave architecture should b...

Introduction to the use and advantages and disadvantages of MySQL triggers

Table of contents Preface 1. Trigger Overview 2. ...

Vue Basic Tutorial: Conditional Rendering and List Rendering

Table of contents Preface 1.1 Function 1.2 How to...

How to clear floating example code in css

Overview The framework diagram of this article is...

Docker solution for logging in without root privileges

When you use the docker command for the first tim...

Meta declaration annotation steps

Meta declaration annotation steps: 1. Sort out all...

Mysql | Detailed explanation of fuzzy query using wildcards (like,%,_)

Wildcard categories: %Percent wildcard: indicates...

Implementing a distributed lock using MySQL

introduce In a distributed system, distributed lo...