MySQL 5.7.19 winx64 free installation version configuration tutorial

MySQL 5.7.19 winx64 free installation version configuration tutorial

mysql-5.7.19-winx64 installation-free version configuration method, for your reference, the specific contents are as follows

1. Download mysql-5.7.19-winx64 from the official website. Note that it corresponds to the system 64-bit or 32-bit. Here we use 64-bit.

2. Unzip and place it on a local disk. I found that the file was very large, about 1.6G. Delete the .lib files in the lib folder and all files in the debug folder.

3. Create a my.ini file in the main directory. The content of the file is as follows: (This is a simplified version. It corresponds to the local modification of the basedir and datadir directories. You can expand the configuration as needed)

[client]
port=3306
default-character-set=utf8 
[mysqld] 
basedir=D:\JavaTools\mysql-5.7.19-winx64
datadir=D:\JavaTools\mysql-5.7.19-winx64\data
port=3306
character-set-server=utf8
character-set-filesystem = utf8
sql_mode=NO_ENGINE_SUBSTITUTION,NO_AUTO_CREATE_USER
explicit_defaults_for_timestamp=true
skip-grant-tables

4. The free installation version has no data files, so you need to create a data folder yourself. Here we start to pay attention to the order of commands

5. Install mysql service.

6. Start mysql

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:
  • Install the unzipped version of MySQL on Windows 10 (recommended)
  • MySQL 5.6 decompressed version installation and configuration method graphic tutorial (win10)
  • MySQL 5.7.13 decompressed version (free installation) installation and configuration tutorial
  • Configuring and installing MySQL 5.6 decompressed version in Windows 7
  • MySQL green decompression version installation and configuration steps
  • MySQL 5.7.19 installation tutorial under Windows 10 How to change the root password of MySQL after forgetting it
  • Basic installation process of mysql5.7.19 under winx64 (details)
  • MySQL Community Server 5.7.19 Installation Guide (Detailed)
  • mysql5.7.19 zip detailed installation process and configuration
  • The latest version of MySQL5.7.19 decompression version installation guide

<<:  Tutorial on installing mongodb under linux

>>:  Vue page monitoring user preview time function implementation code

Recommend

Some things to note about varchar type in Mysql

Storage rules for varchar In versions below 4.0, ...

Use PHP's mail() function to send emails

Sending emails using PHP's mail function The ...

Implementation of drawing audio waveform with wavesurfer.js

1. View the renderings Select forward: Select bac...

Object-Oriented Programming with XHTML and CSS

<br />If only XHTML and CSS were object-orie...

New ways to play with CSS fonts: implementation of colored fonts

What if you designers want to use the font below ...

Nginx reverse proxy forwards port 80 requests to 8080

Let's first understand a wave of concepts, wh...

IE conditional comments for XHTML

<br />Conditional comments are a feature uni...

The solution record of Vue failing to obtain the element for the first time

Preface The solution to the problem of not being ...

How to play local media (video and audio) files using HTML and JavaScript

First of all, for security reasons, JavaScript ca...

Implementation of FIFO in Linux process communication

FIFO communication (first in first out) FIFO name...

How to redirect to https through nginx load balancing

Copy the certificate and key on the web scp -rp -...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

Learn MySQL database in one hour (Zhang Guo)

Table of contents 1. Database Overview 1.1 Develo...

How to use Tencent slider verification code in Vue3+Vue-cli4 project

Introduction: Compared with traditional image ver...

Vue implements div wheel zooming in and out

Implement div wheel zooming in and out in Vue pro...