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

Alibaba Cloud Server Ubuntu Configuration Tutorial

Since Alibaba Cloud's import of custom Ubuntu...

JS implements layout conversion in animation

When writing animations with JS, layout conversio...

MySQL 8 new features: Invisible Indexes

background Indexes are a double-edged sword. Whil...

Design theory: people-oriented green design

Reflections on the two viewpoints of “people-orie...

How to check PCIe version and speed in Linux

PCIE has four different specifications. Let’s tak...

js to achieve simple accordion effect

This article shares the specific code of js to ac...

Mysql queries the transactions being executed and how to wait for locks

Use navicat to test and learn: First use set auto...

How to implement online hot migration of KVM virtual machines (picture and text)

1. KVM virtual machine migration method and issue...

Detailed explanation of the usage of MySQL data type DECIMAL

MySQL DECIMAL data type is used to store exact nu...

HTML realizes hotel screening function through form

<!doctype html> <html xmlns="http:/...

MySQL chooses the appropriate data type for id

Table of contents Summary of Distributed ID Solut...