MySQL 5.7.13 installation and configuration method graphic tutorial (win10 64 bit)

MySQL 5.7.13 installation and configuration method graphic tutorial (win10 64 bit)

This article shares with you the graphic tutorial of MySQL 5.7.13 winx64 installation and configuration method for your reference. The specific content is as follows

(1) Download the MySQL program. You can download it from the MySQL official website, or click here to download it. (2) Unzip the mysql-5.7.13-winx64.zip file to the directory you want to install it. In my case,
D:\program\mysql-5.7.13-winx64. The directory structure is as follows:
Folder: bin docs include lib share
File: COPYING README my-default.ini
(3) Copy the file my-default.ini to the same directory and rename it to my.ini.
(4) Create a new folder called mysqlData on drive E.
(5) Clear the contents of my.ini and copy the following content again.

[client] 
no-beep 
#pipe 
# socket=mysql 
port=3306 
[mysql] 

default-character-set=utf8 

# 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] 
explicit_defaults_for_timestamp = TRUE 

# 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 = 2G 

# 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\mysql-5.7.13-winx64\" 
datadir="E:\mysqlData\" 

port=3306 
server_id=1 

general-log=0 
general_log_file="mysql_general.log" 
slow-query-log=1 
slow_query_log_file="mysql_slow_query.log" 
long_query_time=10 
log-error="mysql_error_log.err" 
default-storage-engine=INNODB 
max_connections=1024 
query_cache_size=128M 
key_buffer_size=128M 
innodb_flush_log_at_trx_commit=1 
innodb_thread_concurrency=128 
innodb_autoextend_increment=128M 
tmp_table_size=128M 

# 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 
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" 
character-set-server=utf8 
innodb_flush_method=normal

(6) Enter cmd as an administrator and use the cd command to enter the bin folder under the mysql directory.
(7) Execute the command to install the MySQL service:

mysqld --install MySQL --defaults-file=D:\program\mysql-5.7.13-winx64\my.ini

After successful installation, prompt: Service successfully installed

(8) To generate the data directory and initialize the data, execute the following command:

mysqld --initialize

After this command is executed, the files and folders needed by MySQL will be generated in the newly created E:\mysqlData folder above.

(9) The file structure in the E:\mysqlData folder is as follows:
Folders: mysql, performance_schema, sys
Files: auto.cnf DESKTOP-SDK08IO.pid ib_buffer_pool ib_logfile0 ib_logfile1 ibdata1 ibtmp1 mysql_error_log.err mysql_slow_query.log

(10) Find the following line in the mysql_error_log file in the E:\mysqlData folder:

Copy the code as follows:
2016-08-02T23:09:18.827488Z 1 [Note] A temporary password is generated for root@localhost: #98um:=-RfbI

The temporary password is root@localhost: followed by #98um:=-RfbI.

(11) Start the service in the same command line program: net start mysql.

(12) Open a new command program, go to the D:\program\mysql-5.7.13-winx64\bin folder, and execute the command:

mysql -uroot -p

(13) After entering the initial password to connect to the MySQL database, change the password as follows:

set password=password('123456');
flush privileges;

(14) Enter exit to exit MySQL.
(15) After the same command, use the new password to enter mysql and execute the command:

mysql -uroot -p123456

After entering MySQL, enter SQL:

select * from information_schema.TABLES t limit 3;

You can verify whether it is installed normally.

(16) Go to the MySQL official website to download and install Workbench so that you can use the MySQL graphical interface.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL 5.7.13 installation and configuration method graphic tutorial (linux)
  • MySQL 5.7.13 winx64 installation and configuration method graphic tutorial
  • MySQL 5.7.13 decompressed version (free installation) installation and configuration tutorial
  • MySQL 5.7.13 installation and configuration method graphic tutorial (win10)
  • The most complete MySQL 5.7.13 installation and configuration method graphic tutorial (linux) highly recommended!
  • mysql5.7.13.zip installation tutorial (windows)
  • MySQL 5.7 and above version installation and configuration method graphic tutorial (mysql 5.7.12\mysql 5.7.13\mysql 5.7.14)
  • MySQL 5.7.13 Installation and Configuration Notes (Mac OS)
  • MySQL 5.7.13 installation tutorial under Linux environment
  • MySQL5.7.13 Environment Construction Tutorial (Unzipped Version)

<<:  js implements mouse switching pictures (without timer)

>>:  CentOS 7 installation and configuration method graphic tutorial

Recommend

MySQL statement summary

Table of contents 1. Select database USE 2. Displ...

OpenSSL implements two-way authentication tutorial (with server and client code)

1. Background 1.1 Problems A recent product testi...

Vue Page Stack Manager Details

Table of contents 2. Tried methods 2.1 keep-alive...

JS generates unique ID methods: UUID and NanoID

Table of contents 1. Why NanoID is replacing UUID...

Detailed explanation of EXT series file system formats in Linux

Linux File System Common hard disks are shown in ...

Some wonderful uses of URL objects in JavaScript

Table of contents Preface Parsing parameters Modi...

jQuery realizes the picture following effect

This article shares the specific code of jQuery t...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

Common methods of Vue componentization: component value transfer and communication

Related knowledge points Passing values ​​from pa...

How to quickly build your own server detailed tutorial (Java environment)

1. Purchase of Server 1. I chose Alibaba Cloud...

Pure CSS to achieve a single div regular polygon transformation

In the previous article, we introduced how to use...

How to display JSON data in HTML

background: Sometimes we need to display json dat...

Font references and transition effects outside the system

Copy code The code is as follows: <span style=...

Linux directory switching implementation code example

Switching files is a common operation in Linux. W...