码迷,mamicode.com
首页 > 数据库 > 详细

mysql-5.7.11-winx64.zip 安装配置

时间:2016-08-27 20:33:19      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

1、下载

http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.11-winx64.zip

2.解压缩zip包;

D:\Program Files\mysql-5.7.11-winx64

 

 3.配置环境变量,

3.1 添加path路径,

D:\Program Files\mysql-5.7.11-winx64\bin

 

 3.2.修改mysql-default.ini配置文件,

# These are commonly set, remove the # and set as required.
# basedir = .....
# datadir = .....
# port = .....
# server_id = .....

改为

# These are commonly set, remove the # and set as required.
 basedir = D:\Program Files\mysql-5.7.11-winx64
 datadir = D:\Program Files\mysql-5.7.11-winx64\Data
 port = 3306
# server_id = .....

 

4.以管理员身份进入命令提示符 cmd

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Windows\system32>mysqld --initialize --user=mysql --console
2016-05-08T02:58:49.494014Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is
 deprecated. Please use --explicit_defaults_for_timestamp server option (see doc
umentation for more details).
2016-05-08T02:58:49.530016Z 0 [Warning] ‘NO_ZERO_DATE‘, ‘NO_ZERO_IN_DATE‘ and ‘E
RROR_FOR_DIVISION_BY_ZERO‘ sql modes should be used with strict mode. They will
be merged with strict mode in a future release.
2016-05-08T02:58:49.530016Z 0 [Warning] ‘NO_AUTO_CREATE_USER‘ sql mode was not s
et.
2016-05-08T02:58:52.348376Z 0 [Warning] InnoDB: New log files created, LSN=45790

2016-05-08T02:58:52.869005Z 0 [Warning] InnoDB: Creating foreign key constraint
system tables.
2016-05-08T02:58:53.432037Z 0 [Warning] No existing UUID has been found, so we a
ssume that this is the first time that this server has been started. Generating
a new UUID: cc42ac67-14c8-11e6-90e5-08606e8d1296.
2016-05-08T02:58:53.533043Z 0 [Warning] Gtid table is not ready to be used. Tabl
e ‘mysql.gtid_executed‘ cannot be opened.
2016-05-08T02:58:53.791057Z 1 [Note] A temporary password is generated for root@
localhost: UiS<C(.i(0yg

C:\Windows\system32>D:

D:\>cd mysql

D:\mysql>

D:\mysql>mysqld --install MySQL
Service successfully installed.

D:\mysql>net start mysql
The MySQL service is starting.
The MySQL service was started successfully.


D:\mysql>mysql -u root -p
Enter password:UiS<C(.i(0yg

set password for root@localhost = password(‘hxl520‘);

 

mysql-5.7.11-winx64.zip 安装配置

标签:

原文地址:http://www.cnblogs.com/huxiaolin/p/5813631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!