MySQL 5.7.17 installation tutorial with solutions to the problem that the MySQL service cannot be started

MySQL 5.7.17 installation tutorial with solutions to the problem that the MySQL service cannot be started

For .net development, I am more familiar with Microsoft's SQL Server database, and I have used MySQL and Oracle before, but I am very familiar with them, so...

Preparation

MySQL official website https://dev.mysql.com/

Download mysql file

Note: The above download is a compressed package installation method.

Install

The specific installation is as follows:

(1) Unzip mysql-5.7.17-winx64.zip to E:\MySQL\, open a command prompt and run it as an administrator, cd to E:\MySQL\mysql-5.7.17-winx64\bin

The command is: cd /d E:\MySQL\mysql-5.7.17-winx64\bin

(2) Install MySQL

mysqld install. After running the command, MySQL is installed successfully.

(3) Start the MySQL service.

net start mysql will start the MySQL service. It is worth noting that the default service name of MySQL installed using the command under Windows system is mysql, and the default password is empty.

It can be clearly seen that the "MySQL service cannot be started" error occurs here.

The solution is as follows:

First, download the zip file of mysql-5.6.35-winx64 from the official website, then copy the entire data file under mysql-5.6.35-winx64.zip to mysql-5.7.17-winx64, and repeat step 3.

(4)Configure environment variables

1) Create a new MYSQL_HOME variable and set its value to: E:\MySQL\mysql-5.7.17-winx64

MYSQL_HOME: E:\MySQL\mysql-5.7.17-winx64

2) Edit the path system variable and add %MYSQL_HOME%\bin to the path variable. Configure the path environment variable. You can also configure the bin directory under the MySQL installation directory to the path variable directly instead of creating a new MYSQL_HOME variable. Path : %MYSQL_HOME%\bin

(5) Enter MySQL

mysql -uroot -p , the password is empty by default. The display of “mysql>” indicates that you have entered MySQL.

(To set the password: mysqladmin -u root -p password password.

Just exit. Remember that closing the cmd window directly does not exit. You must enter exit to exit.)

Next, you can use T-SQL statements to perform various operations on the database. The database can also be managed using database graphical management tools.

use

Navicat for MySQL graphical interface tool connect, open, use....

Wonderful topic sharing: Installation tutorials for different versions of MySQL Installation tutorials for MySQL 5.7 versions Installation tutorials for MySQL 5.6 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.17 and workbench installation and configuration graphic tutorial
  • MySQL 5.7.17 installation and configuration method graphic tutorial
  • mysql5.7.17.msi installation graphic tutorial
  • Tutorial on installing mysql5.7.17 on windows10
  • MySQL 5.7.17 installation and configuration graphic tutorial
  • Detailed installation steps for MySQL 5.7.17 decompressed version (ZIP version)
  • MySQL 5.7.17 installation and configuration method graphic tutorial (windows)
  • How to upgrade MySQL version to 5.7.17 in phpStudy
  • Detailed process of decompressing and installing mysql5.7.17 zip
  • MySQL 5.7.17 zip installation and configuration tutorial Solution to MySQL startup failure

<<:  Docker Tutorial: Using Containers (Simple Example)

>>:  Implementation of Vue package size optimization (from 1.72M to 94K)

Recommend

Let’s talk about the symbol data type in ES6 in detail

Table of contents Symbol Data Type The reason why...

...

How to deploy LNMP architecture in docker

Environmental requirements: IP hostname 192.168.1...

Detailed explanation of the solution for migrating antd+react projects to vite

Antd+react+webpack is often the standard combinat...

Detailed explanation of map overlay in openlayers6

1. Overlay Overview Overlay means covering, as th...

Detailed explanation of Mysql logical architecture

1. Overall architecture diagram Compared to other...

MySQL join buffer principle

Table of contents 1. MySQL join buffer 2. JoinBuf...

15 Linux Command Aliases That Will Save You Time

Preface In the process of managing and maintainin...

JavaScript type detection method example tutorial

Preface JavaScript is one of the widely used lang...

Solve the problem that the time zone cannot be set in Linux environment

When changing the time zone under Linux, it is al...

CSS3 flexible box flex to achieve three-column layout

As the title says: The height is known, the width...