Detailed installation tutorial of mysql5.7.19 decompressed version (with pure cracked Chinese version SQLYog)

Detailed installation tutorial of mysql5.7.19 decompressed version (with pure cracked Chinese version SQLYog)

Mysql5.7.19 version is a new version launched this year. The recent versions of MySQL are no longer installation versions, but decompressed versions. This has caused a lot of trouble and dug a lot of holes for comrades. From the perspective of user usability alone, this is really a bit anti-human!

The author also tried again and again for almost an hour before he successfully got it done. In the process, he also searched a lot of tutorials on the Internet, but unfortunately many of them were the same. So he simply recorded it himself to avoid repeating the same mistake next time.

In addition: There are many kinds of graphical tools for MySQL. I feel that SQLYog is easier to use. This is purely my personal feeling. Please don’t criticize me if you don’t like it! Comes with a cracked version of SQLYog.

The author's environment:

win10 x64

1. Download the installation package

Visit MySQL official website https://www.mysql.com/

Download in the following order:

2. Unzip to a custom directory

After decompression, it is as follows:

3. Edit my.ini

As shown in the figure above, there is no my.ini file after decompression, so you need to write it yourself.

The content is as follows. Simply create a new my.ini document and copy and save the following content:

[Client]#
Set port 3306 port = 3306 [mysqld]#
Set port 3306 port = 3306# 
Set the installation directory of MySQL basedir=%MYSQL_HOME%# 
Set the storage directory of mysql database data datadir=%MYSQL_HOME%\data# 
The maximum number of connections allowed is max_connections=200# 
The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8# 
The default storage engine that will be used when creating a new table default-storage-engine=INNODB sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES [mysql]# 
Set the default character set of MySQL client to default-character-set=utf8#
forget the password#
skip-grant-tables[WinMySQLAdmin]%MYSQL_HOME%\bin\mysqld.exe 

After editing, copy the my.ini file to the bin/directory.

4. Configure environment variables

You need to pay attention when configuring environment variables. For some reason, the author is using the latest version of win10. When configuring environment variables, if you use %*****_HOME%, it will not take effect. You can only configure the path directly:

Configure MYSQL_HOME:

5. Installation

Find C:\Windows\System32\cmd.exe, run it as administrator, administrator, administrator, and open the bin\ directory:

Execute the commands separately

mysqld --installmysqld --initialize-insecurenet start mysql

The execution results are as follows:

Check the decompression directory to see that the data folder has been generated

6. Change password

Execute the following commands in sequence. Note that the root password for the first installation is blank. You need to reset the password. I have also tested resetting the password during login, but it does not work. It is a bit troublesome to use the forgotten password configuration, so it is not recommended.

mysql -u root -puse mysql;
update user set authentication_string=password('root') 
where user='root';flush privileges;exit

Execution Result:


Log out and log back in:

Comes with SQLYog pure cracked Chinese version download resources

After downloading and installing, just double-click the registry!

The effect is as follows:

Summarize

The above is the detailed installation tutorial of MySQL5.7.19 decompressed version introduced by the editor (with the pure cracked Chinese version of SQLYog), I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • SQLyog.Enterprise.7.02 registration code with registration machine download
  • Mysql desktop tool SQLyog resources and activation methods say goodbye to the black and white command line
  • MySQL and sqlyog installation tutorial with pictures and text
  • Perfect solution for SQLyog reporting error 2058 when connecting to MySQL 8.0
  • How to solve the problem of unsuccessful import of csv data into mysql using SQLyog
  • How to set up sqlyog to solve the Chinese garbled code problem
  • SQLyog download and installation super detailed tutorial (personal test permanent effect)

<<:  How to use Docker-compose to deploy Django applications offline

>>:  Interpretation of CocosCreator source code: engine startup and main loop

Recommend

Detailed tutorial on installing Docker and nvidia-docker on Ubuntu 16.04

Table of contents Docker Installation Nvidia-dock...

Introduction to the usage of common XHTML tags

There are many tags in XHTML, but only a few are ...

Detailed explanation of application scenarios of filters in Vue

filter is generally used to filter certain values...

Vue data responsiveness summary

Before talking about data responsiveness, we need...

HTML tags explained

HTML tags explained 1. HTML tags Tag: !DOCTYPE De...

Solution to Nginx SSL certificate configuration error

1. Introduction When a web project is published o...

Modify file permissions (ownership) under Linux

Linux and Unix are multi-user operating systems, ...

Solve the problem of insufficient docker disk space

After the server where Docker is located has been...

Example code for implementing 3D Rubik's Cube with CSS

Let's make a simple 3D Rubik's Cube today...

Solve the problem of margin merging

1. Merge the margins of sibling elements The effe...

CSS3 sample code to achieve element arc motion

How to use CSS to control the arc movement of ele...

HTML Tutorial: DOCTYPE Abbreviation

When writing HTML code, the first line should be ...

Solution to the problem of web page flash animation not displaying

<br />The solution steps are as follows: Sta...

Detailed explanation of using Docker to build externally accessible MySQL

Install MySQL 8.0 docker run -p 63306:3306 -e MYS...

Front-end vue+express file upload and download example

Create a new server.js yarn init -y yarn add expr...