mysql zip file installation tutorial

mysql zip file installation tutorial

This article shares the specific method of installing the MySQL zip file for your reference. The specific content is as follows

1. Download

mysql zip file download address

2. Unzip and configure environment variables

MYSQL_HOME:D:\mysql
Add %MYSQL_HOME%\bin after path

3. Add the my.ini file and data folder

[mysql]
# Set the default character set of the mysql client to default-character-set=utf8
[mysqld]
#Set port 3306 port = 3306
# Set the installation directory of mysql to basedir=D:\mysql5.7
# Set the storage directory of mysql database data datadir=D:\mysql5.7\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

4. Enter the bin folder of the installation directory and run CMD as an administrator, such as D:mysql\bin, then initialize the database and remember the assigned password

mysqld --initialize --user=mysql --console

5. Installation and startup

mysqld --install mysql

net start mysql

Note: If the system is missing the msvcp120.dll file when starting, please download the C++ 2013 library

Address: C++ 2013 Library

6. Change password

SET PASSWORD = PASSWORD('your password');

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:
  • How to install and uninstall MySQL service under Windows (MySQL 5.6 zip decompression version installation tutorial)
  • MySQL 5.6.51 decompressed version (zip version) installation and configuration graphic method
  • mysql5.7.13.zip installation tutorial (windows)
  • Detailed installation steps for MySQL 5.7.17 decompressed version (ZIP version)
  • Detailed process of decompressing and installing mysql5.7.17 zip
  • MySQL 5.5.x zip direct decompression version installation method
  • Detailed installation tutorial of mysql 5.7 zip file under windows
  • MySQL 5.7 zip version (zip version) installation and configuration steps detailed
  • MySQL 5.7.16 zip package installation and configuration method graphic tutorial
  • mysql5.7.21.zip installation tutorial

<<:  Explore JavaScript prototype data sharing and method sharing implementation

>>:  Tutorial on deploying jdk and tomcat on centos7 without interface

Recommend

VMware installation of Ubuntu 20.04 operating system tutorial diagram

Memo: Just experience it. Record: NO.209 This exa...

Sample code for converting video using ffmpeg command line

Before starting the main text of this article, yo...

Briefly describe mysql monitoring group replication

Original text: https://dev.mysql.com/doc/refman/8...

Mysql example of splitting into multiple rows and columns by specific symbols

Some fault code tables use the following design p...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...

How to implement batch deletion of large amounts of data in MySQL large tables

The question is referenced from: https://www.zhih...

Simple example of HTML checkbox and radio style beautification

Simple example of HTML checkbox and radio style b...

Introduction to Enterprise Production MySQL Optimization

Compared with other large databases such as Oracl...

The latest 36 high-quality free English fonts shared

01. Infinity Font Download 02. Banda Font Download...

How to use docker to deploy spring boot and connect to skywalking

Table of contents 1. Overview 1. Introduction to ...

AsyncHooks asynchronous life cycle in Node8

Async Hooks is a new feature of Node8. It provide...

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

Vue3 list interface data display details

Table of contents 1. List interface display examp...

Introduction to the process of installing MySQL 8.0 in Linux environment

Table of contents Preface 1. Linux changes the yu...

Analysis of MySQL example DTID master-slave principle

Table of contents 1. Basic Concepts of GTID 2. GT...