MySql 5.6.36 64-bit green version installation graphic tutorial

MySql 5.6.36 64-bit green version installation graphic tutorial

There are many articles about MySQL installation on the Internet, but I encountered a problem when installing it on my laptop today, so I just made a record of it.

1. Download the MySQL zip archive from the official website https://dev.mysql.com/downloads/mysql/. There are 32-bit and 64-bit versions for Windows as needed.

2. After downloading, unzip it to the folder you specified. This is the path I unzipped.

3. Configure environment variables, just like configuring Java environment variables.

4. Change the database configuration file. Copy my-default.ini in the root directory and rename it to my.ini

Change the configuration inside, and note that the file path inside must be enclosed in double quotes.

# For advice on how to change settings please see 
# http://dev.mysql.com/doc/refman/5.6/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:\Program Files\mysql-5.6.36-winx64" 
datadir = "D:\Program Files\mysql-5.6.36-winx64\data" 
# port = ..... 
# 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 
#Server encoding character-set-server=utf8 
[client] 
#Client encoding method, it is best to keep it consistent with the server loose-default-character-set = utf8 
[WinMySQLadmin] 
Server = "D:\Program Files\mysql-5.6.36-winx64\bin\mysqld.exe" 
</span>

5. Install the MySQL service, switch to the bin directory of MySQL in the DOS window and execute the command

mysqld -install

I had a problem, and I looked it up online and it said that it was due to the lack of Microsoft Visual C++ 2010 runtime library.

OK, go to the official website, download it, install it, restart the service and the installation is successful.

Run services.msc to view the registered services, and then start the MySQL service.

At this point our MySQL server has been installed.

6. Log in to the MySQL server and reset the password.

Since the default username is root and the password is empty, use the command mysql –u root –p and press Enter to enter the password when prompted to log in. At this point, mysql-5.6.36-winx64 green version is installed successfully.

Let's change the default password. In the bin command directory, use the mysqladmin.exe command to change the password.

mysqladmin –u root –p password 123456//123456 is the new password. Press Enter to enter the password. This is the original password. If the original password is empty, just press Enter to successfully change it.

Log in with your new password

It is really inconvenient to operate in a black window. In actual work, the most commonly used MySQL visualization tool is Navicat for MySQL.

The above is the installation graphic tutorial of MySql 5.6.36 64-bit green version introduced by the editor. 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:
  • MySQL5.6.22 Green Edition Installation Detailed Tutorial (Graphical)
  • MySQL green version (zip decompression version) installation graphic tutorial (mysql-5.6.22-win32.zip)
  • MySQL 5.6.17 Green Edition (Free Installation) Installation and Configuration Tutorial
  • MySQL 5.7.18 Green Edition Download and Installation Tutorial

<<:  How to deploy gitlab using Docker-compose

>>:  TypeScript installation and use and basic data types

Recommend

Detailed process of using Vscode combined with docker for development

Preface Using Docker and VS Code can optimize the...

Analysis of Linux kernel scheduler source code initialization

Table of contents 1. Introduction 2. Basic Concep...

Summary of Docker common commands and tips

Installation Script Ubuntu / CentOS There seems t...

How to change the root password in MySQL 5.7

Starting from MySQL 5.7, many security updates ha...

Nginx configures the same domain name to support both http and https access

Nginx is configured with the same domain name, wh...

Use vertical-align to align input and img

Putting input and img on the same line, the img ta...

jQuery implements form validation function

jQuery form validation example / including userna...

3 different ways to clear the option options in the select tag

Method 1 Copy code The code is as follows: documen...

Summary of xhtml block level tags

* address - address * blockquote - block quote * c...

ElementUI implements sample code for drop-down options and multiple-select boxes

Table of contents Drop-down multiple-select box U...

Detailed explanation of meta tags and usage in html

I won’t waste any more time talking nonsense, let...

Detailed installation process and basic usage of MySQL under Windows

Table of contents 1. Download MySQL 2. Install My...