Windows Server 2008 64-bit MySQL5.6 installation-free version configuration method diagram

Windows Server 2008 64-bit MySQL5.6 installation-free version configuration method diagram

1 Download the MySQL 5.6 version compressed package from the official website, mysql-5.6.36-winx64.zip ;

2 Create a directory on drive D, such as D:\MySQL, and unzip mysql-5.6.36-winx64.zip to the directory, as shown in the following figure:

3 Modify the system Path variable and add D:\MySQL\bin, as shown in the following figure:

4 Run cmd as an administrator and switch to the D:\MySQL\bin directory.

Install the service mysqld –install

Start the service net start mysql

After the service is successfully started, log in through the mysql command line

mysql –u root –p

The initial root password is blank, just press Enter.

The whole process is shown in the figure below:

5 Change the root password

Follow these steps:

use mysql;
update user set password=password('yourpassword') where user='root';
flush privileges; 

Summarize

The above is the graphic description of the configuration method of the Windows Server 2008 64-bit MySQL5.6 free installation 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:
  • mysql-5.7.21-winx64 free installation version installation--Windows tutorial detailed explanation
  • MySQL 5.7.22 binary package installation and installation-free version Windows configuration method
  • How to quickly install and deploy MySQL in Windows system (green free installation version)
  • mysql5.7.18.zip Installation-free version configuration tutorial (windows)
  • Detailed tutorial for upgrading MySQL 5.7.17 free installation version on Windows (x86, 64bit)
  • MySQL 5.7.17 free installation version configuration method graphic tutorial (windows10)
  • MySQL 8.0.13 free installation version configuration tutorial under Windows environment

<<:  JavaScript to dynamically load and delete tables

>>:  Build a Docker private warehouse (self-signed method)

Recommend

Mac node deletion and reinstallation case study

Mac node delete and reinstall delete node -v sudo...

An article tells you how to implement Vue front-end paging and back-end paging

Table of contents 1: Front-end handwritten paging...

JavaScript static scope and dynamic scope explained with examples

Table of contents Preface Static scope vs. dynami...

setup+ref+reactive implements vue3 responsiveness

Setup is used to write combined APIs. The interna...

How to avoid garbled characters when importing external files (js/vbs/css)

In the page, external files such as js, css, etc. ...

How to introduce pictures more elegantly in Vue pages

Table of contents Error demonstration By computed...

Detailed explanation of 7 SSH command usages in Linux that you don’t know

A system administrator may manage multiple server...

What is ZFS? Reasons to use ZFS and its features

History of ZFS The Z File System (ZFS) was develo...

Using CSS3's 3D effects to create a cube

Learning to use CSS3's 3D effects to create a...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...