1 through the official website download MySQL5.6 version compressed package, Mysql-5.6.36-winx64.zip;
2 Create a directory in the D drive, such as D:\MySQL, to extract the mysql-5.6.36-winx64.zip into this directory, as shown in:
3 Modify the System path variable to add D:\MySQL\bin, as shown in:
4 run cmd as Administrator, switch to the D:\MySQL\bin directory,
Installation Service Mysqld–install
Start the service net start MySQL
After the service starts successfully, log on through the MySQL command line
Mysql–u root–p
The initial root password is empty and you can enter it directly.
All the procedures are as follows:
5 Changing the root password
Follow these steps:
Use MySQL;
Update user set Password=password (' YourPassword ') where user= ' root ';
Flush privileges;
Windows Server 2008 64-bit MySQL5.6 Installation-free version configuration instructions