Home > Database > Mysql Tutorial > body text

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

Release: 2023-07-26 15:34:29
forward
1428 people have browsed it

This article mainly introduces the graphic tutorial on the installation and configuration method of mysql 5.7.21 decompressed version in detail. It has certain reference value. If you are interested, Friends, you can refer to

Due to work needs, I often help others install databases recently. When installing, I have to go online to find installation tutorials, which is quite troublesome, so I sorted it out myself. The installation method of the decompressed version of MySQL5.7.21 for easy viewing.

1. To download the decompressed version of MySQL

you can go to the official website to download it yourself, Or follow the 「Java Learning Guide」 official account and reply 「mysql」 in the background to get the download link

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

on the official website here Select the appropriate version and click download. What I chose here is mysql5.7.21versionMysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

##2. Unzip the installation package

Choose the path according to your preference. The path I chose is C:\software\, so the full path of MySQL is: C:\software\mysql-5.7.21-winx64

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

3. Configure environment variables

Add new system Environment variable, key name: MYSQL_HOME, value: C:\software\mysql-5.7.21-winx64

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

Add: %MYSQL_HOME%\bin to Path, note The ";" symbol between different values ​​in Path cannot be omitted

4. Prepare the my.ini file

You can create a new my.txt file first, and then change the file suffix to .ini by renaming it. The my-default.ini file may exist after decompression in the previous version, but the 5.7.21 version does not, so To create the file manually, the content of the file is as follows:

[mysqld] 
port = 3306 
basedir=C:/software/mysql-5.7.21-winx64 
datadir=C:/software/mysql-5.7.21-winx64/data  
max_connections=200 
character-set-server=utf8 
default-storage-engine=INNODB 
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 
[mysql] 
default-character-set=utf8
Copy after login

Note in this step: the red box is the installation path of MySQL, and use "/" instead of "\" between folders, otherwise An error may occur in the following operations.

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

After editing the my.ini file, place the my.ini file in the C:\software\mysql-5.7.21-winx64 directory

5. Enter the directory in cmd

Open the cmd command window as an administrator and switch the directory to In the bin directory of the MySQL installation directoryMysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

6.执行语句进行MySQL的安装

mysqld -install
Copy after login

执行命令后提示:Service successfully installed. 表示安装成功

7.执行以下语句进行MySQL的初始化

mysqld --initialize-insecure --user=mysql
Copy after login

执行命令后会在MySQL的安装目录下生成data目录并创建root用户。

Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go

8.执行以下命令以启动mysql服务

net start mysql
Copy after login

执行后会有如下提示:

MySQL服务正在启动..
MySQL服务已经启动成功。

9.设置密码

启动MySQL之后,root用户的密码为空,设置密码,命令如下:

mysqladmin -u root -p password 新密码 
Enter password: 旧密码
Copy after login

需要输入旧密码时,由于旧密码为空,所以直接回车即可。

至此,MySQL5.7.21解压版安装完毕,是不是很简单?如果你需要,就按照此教程赶快试试吧~

The above is the detailed content of Mysql has not been installed successfully? Come and try my method, I guarantee you will get it done in one go. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:Java学习指南
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!