MySQL 5.7.24 compressed package installation and configuration method graphic tutorial

MySQL 5.7.24 compressed package installation and configuration method graphic tutorial

This article shares the installation tutorial of MySQL 5.7.24 compressed package for your reference. The specific content is as follows

1. Download the MySQL installation package:

Download address: mysql installation

Download the corresponding version of MySQL as needed

Next, click Download and select No thanks, just start my download to download the installation package directly.

2. Configure environment variables

Create a new MYSQL_HOME variable and name it your decompression path name

Edit the path variable and add ;%MYSQL_HOME%\bin; at the end.

3. Unzip the installation package to the specified path-------my.ini file

1. After downloading, unzip it to the directory you want to put it in (versions around 5.7.20 (at least 5.7.20), there is no my-default.ini file)

2. In the same directory as bin, create a new my-default.ini file. My ini file looks like this:

#Set port 3306 to 3306
# Set the installation directory of mysql basedir=D:\tools\mysql-5.7.24-winx64
# Set the storage directory of mysql database data datadir=D:\tools\mysql-5.7.24-winx64\data 
# Maximum number of connections allowed 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 the mysql client to default-character-set=utf8

3. Under the bin directory, create (or copy my-default.ini) the my.ini file, otherwise when you initialize mysqld --initialize-insecure, the data file will report that the folder cannot be found (the data folder cannot be automatically generated)

My my.ini:

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during installation, and will be replaced if you
# *** upgrade to a newer version of MySQL.
 
[mysqld]
 
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
 
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
 
# These are commonly set, remove the # and set as required.
basedir = D:\tools\mysql-5.7.24-winx64
datadir = D:\tools\mysql-5.7.24-winx64\data
port = 3306
# server_id = .....
 
 
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M
 
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

Note that the basedir and datadir paths are changed to your own MySQL decompression path

4. Install MySQL service and initialize

1. Run cmd as an administrator and execute the command to install the mysql service: mysqld --install

mysqld --install

We can see that the service has been successfully installed.

If the installation fails, it may be because you installed it before but did not uninstall it completely, so be sure to uninstall it completely.

2. Initialize MySQL:

mysqld --initialize

3. Then start MySQL:

net start mysql 

4. Log in to MySQL: mysql -u root -p

mysql -uroot -p

Note: The initial password can be found in the file with the suffix .err in the generated data folder

5. Then set your own login password:

use mysql;
UPDATE user SET authentication_string = PASSWORD('123456') WHERE user = 'root'; 

Note: When changing the password, please note that the password field has been cancelled in 5.7. Be sure to write authentication_string

mysql>UPDATE user SET authentication_string = PASSWORD('new password') WHERE user = 'root';
mysql>FLUSH PRIVILEGES; //Refresh permissions

5. Problems I encountered during the installation process and their solutions (please ignore if you are a big shot)

Problem: Mysql installation error: Unable to locate the program entry point fesetround on the dynamic link library MSVCR120.dll

Solution: Download and install the Microsoft Visual C++ 2013 Redistributable Package

Download address: Update for Visual C++ 2013 and Visual C++ Redistributable Package

After downloading, just install it in one step, and then reconnect to the database (the problem I encountered was an error during mysqld --install)

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:
  • Detailed tutorial on compiling and installing MySQL 5.7.24 on CentOS7
  • Centos7.5 installs mysql5.7.24 binary package deployment
  • The perfect solution for MYSQL5.7.24 installation without data directory and my-default.ini and service failure to start
  • Detailed graphic description of the database installation process of MySQL version 5.7.24
  • MySQL 5.7.24 installation and configuration graphic tutorial
  • MySQL 5.7.24 installation and configuration method graphic tutorial
  • How to install mysql5.7.24 binary version on Centos 7 and how to solve it
  • Summary of installation steps and problems encountered in decompressing the mysql5.7.24 version

<<:  Best Practices for Implementing Simple Jira Projects with React+TS

>>:  Example usage of Linux compression file command zip

Recommend

Flex layout realizes the layout mode of upper and lower fixed and middle sliding

This article mainly introduces the layout method ...

How to Fix File System Errors in Linux Using ‘fsck’

Preface The file system is responsible for organi...

Detailed example of locating and optimizing slow query sql in MySQL

Table of contents 1. How to locate and optimize s...

MySQL Tutorial: Subquery Example Detailed Explanation

Table of contents 1. What is a subquery? 2. Where...

Detailed steps to modify MySQL stored procedures

Preface In actual development, business requireme...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

Introduction to general_log log knowledge points in MySQL

The following operation demonstrations are all ba...

Sample code for implementing 3D book effect with CSS

Without further ado, let's take a look at the...

Pure js to achieve typewriter effect

This article example shares the specific code of ...

Join operation in Mysql

Types of joins 1. Inner join: The fields in the t...

Tips for writing concise React components

Table of contents Avoid using the spread operator...

What is em? Introduction and conversion method of em and px

What is em? em refers to the font height, and the ...

How to write a Node.JS version of a game

Table of contents Overview Build Process Related ...