MySQL is a relational, powerful database that is currently very popular. However, the official website gives the installation package in two formats, one in MSI format and one in ZIP format. Many people under the zip format of the decompression found no Setup.exe, at first I face a bunch of files confused, do not know how to install. The following article describes how to install the configuration.
First, download
: http://dev.mysql.com/downloads/mysql/
Second, the configuration
2.1 Download down the zip suffix of the package, extract it out, and then place the custom name in the corresponding location, I am in the server's D packing directory, named: mysql-5.6, that is D:\mysql-5.6\, the directory contains bin, data, Docs, Lib and other directories and documents;
2.2 Configure the environment variable, add at the end of the system variable path:;D: \mysql-5.6\bin (note is append, not overwrite)
2.3 Configuring My.ini
The files under the Replicator directory are my-default.ini to My.ini, and the contents of the edits are:
Basedir = D:\mysql-5.6
DataDir = D:\mysql-5.6\data
Port = 3306
Third, installation
Run as Administrator start-run-enter CMD, after entering the DOS window, first switch to the MySQL program directory:
C:\users\administrator>d:
D:\>CD Mysql-5.6\bin
D:\mysql-5.6\bin>mysqld-install (mysqld-remove means delete mysql)
Service successfully installed. (indicates that the installation was successful)
D:\mysql-5.6\bin>net start MySQL
The MySQL service is starting:
The MySQL service has started successfully. (stating that the service started successfully)
IV. Login Verification
D:\mysql-5.6\bin>mysql-uroot-p
Enter Password: (default is a blank password, directly enter the login can be)
Welcome to the MySQL Monitor. Commands End With; or \g.
Your MySQL Connection ID is 3
Server version:5.6.23 MySQL Community Server (GPL)
Copyright (c), Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of the Oracle Corporation and/or its
Affiliates. Other names trademarks of their respective
Owners.
Type ' help ', ' or ' \h ' for help. Type ' \c ' to clear the current input statement.
Mysql>
This installation and the simple configuration are complete.
This article is from the "Square Hill" blog, please be sure to keep this source http://63638790.blog.51cto.com/513514/1643545
MySQL 5.6 For Windows Configuration installation uncompressed version