Detailed tutorial for downloading, installing and configuring MySQL 5.7.27

Detailed tutorial for downloading, installing and configuring MySQL 5.7.27

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

1. Visit the official website: https://www.mysql.com/
Select Community under Downloads

insert image description here

2. Download the corresponding version

Click on MySQL Community Server in the picture above to enter the download interface:

insert image description here

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

insert image description here

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:

insert image description here

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

insert image description here

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.

insert image description here

The above completes all the downloading work.

2. Configure environment variables

1. System -> Advanced System Settings -> Environment Variables -> System Variables

insert image description hereinsert image description hereinsert image description here

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:

insert image description here

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

insert image description here 3.

3. Configure 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 

insert image description here

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!

insert image description here

1. Enter the E:\Program Files\Mysql\mysql-5.7.27-winx64\bin directory in cmd :

insert image description here

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:

insert image description here

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

insert image description here

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

insert image description here

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 :

insert image description here

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:

insert image description here

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

insert image description here

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

insert image description here

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

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

insert image description here

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!

insert image description here

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

insert image description here

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!

insert image description here

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

insert image description here

Since the password has not been reset, just reset it by typing the command line alter user user() identified by "xxxxxx"; My password is 123456, so I type alter user user() identified by "123456"; Enter! Getting closer and closer to victory!
Enter the command line use mysql again to verify, success!

insert image description here

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!

This is the end of this article about the detailed download, installation and configuration tutorial of MySQL 5.7.27. For more relevant MySQL 5.7.27 download, installation and configuration content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.12 installation and environment variable configuration tutorial under win10
  • MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial
  • How to configure environment variables after installing mysql5.7 database
  • The latest version of MySQL 8.0.22 download and installation super detailed tutorial (Windows 64 bit)
  • MySQL 8.0.22.0 download, installation and configuration method graphic tutorial
  • MySQL 8.0.22 download, installation and configuration method graphic tutorial
  • mysql8.0.20 download and installation and problems encountered (illustration and text)
  • MySQL 5.6.37 (zip) download installation configuration graphic tutorial
  • MySQL 5.7.18 Green Edition Download and Installation Tutorial
  • MySQL 8.0.15 download and installation detailed tutorial is a must for novices!
  • MySQL 8.0.13 download and installation tutorial with pictures and text
  • Summary of common problems in downloading and installing MySQL 5.7 on Win7 64-bit
  • Detailed graphic instructions for downloading and installing the unzipped version of MySQL 5.7.18 and starting the MySQL service
  • MySQL 5.7 Service Download and Installation Graphical Tutorial (Classic Edition)
  • MySQL 5.7.14 download, installation, configuration and use detailed tutorial
  • MySQL msi version download and installation detailed graphic tutorial for beginners

<<:  Configure selenium environment based on linux and implement operation

>>:  Native js to achieve accordion effect

Recommend

The best 9 foreign free picture material websites

It is difficult to find good image material websi...

CSS3 realizes various graphic effects of small arrows

It’s great to use CSS to realize various graphics...

A collection of possible problems when migrating sqlite3 to mysql

Brief description Suitable for readers: Mobile de...

Solution to the problem of saving format in HTML TextArea

The format of textarea can be saved to the databas...

Summary of several common logs in MySQL

Preface: In the MySQL system, there are many diff...

Use native js to simulate the scrolling effect of live bullet screen

Table of contents 1. Basic principles 2. Specific...

Vue implements user login switching

This article example shares the specific code of ...

MySQL 5.7.21 installation and configuration tutorial under Window10

This article records the installation and configu...

js implements table drag options

This article example shares the specific code of ...

Solution to the failure of loading dynamic library when Linux program is running

Unable to load dynamic library under Linux When t...

Sample code using the element calendar component in Vue

First look at the effect diagram: The complete co...