博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL 5.7.9 免安装配置
阅读量:5280 次
发布时间:2019-06-14

本文共 2042 字,大约阅读时间需要 6 分钟。

MySQL 5.7.9 免安装配置

环境:win10 64位

mysql版本:mysql-5.7.9-winx64.zip ()

首先声明一下,5.7.9这个版本的配置方式跟之前的免安装版配置不一样。(.msi安装版和其他版本的可以忽略该方法)

步骤:
1,在官网上下载了mysql-5.7.9-winx64.zip 这个文件之后, 解压到指定目录:F:\java\mysql\mysql-5.7.9-winx64
2,在F:\java\mysql\mysql-5.7.9-winx64 目录创建data文件夹
3,将my.default.ini改名为my.ini放到bin目录,并且在my.ini目录加入如下代码:
basedir = F:\java\mysql\mysql-5.7.9-winx64
datadir = F:\java\mysql\mysql-5.7.9-winx64\data
port = 3306
4,配置环境变量,path=F:\java\mysql\mysql-5.7.9-winx64\bin
5,以管理员权限打开命令行,进入到F:\java\mysql\mysql-5.7.9-winx64\bin目录,
执行: mysqld --initialize --user=mysql --console
6,先执行以上命令, 会生成库. 注意有个临时密码, 要记下来.

F:\java\mysql\mysql-5.7.9\bin>mysqld --initialize --user=mysql --console2015-11-03T02:12:10.856918Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2015-11-03T02:12:10.856918Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release. 2015-11-03T02:12:10.856918Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set. 2015-11-03T02:12:14.162565Z 0 [Warning] InnoDB: New log files created, LSN=45790 2015-11-03T02:12:14.884331Z 0 [Warning] InnoDB: Creating foreign key constraint system tables. 2015-11-03T02:12:15.123784Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 4d177d5b-81d0-11e5-bb66-c454443dc023. 2015-11-03T02:12:15.176861Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened. 2015-11-03T02:12:15.189872Z 1 [Note] A temporary password is generated for root@localhost: >GqoShvY!03e

 

7,如本次执行的临时密码是: >GqoShvY!03e

8, 执行安装服务命令: mysqld –install
9,执行启动服务命令: net start mysql
10,到此,mysql就安装好了。 然后执行:mysql -uroot -p
11,输入刚才的密码: >GqoShvY!03e
12,执行改密码命令:set password = password(‘password’)
13,至此,就root账号的密码就被你改成password了

转载于:https://www.cnblogs.com/hyqing/p/5013527.html

你可能感兴趣的文章
Bootstrap--响应式导航条布局
查看>>
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>
HDU 1021 一道水题
查看>>
The operation couldn’t be completed. (LaunchServicesError error 0.)
查看>>
php每天一题:strlen()与mb_strlen()的作用分别是什么
查看>>
工作中收集JSCRIPT代码之(下拉框篇)
查看>>
《转载》POI导出excel日期格式
查看>>
code异常处理
查看>>
git - 搭建最简单的git server
查看>>
会话控制
查看>>
推荐一款UI设计软件Balsamiq Mockups
查看>>
Linux crontab 命令格式与详细例子
查看>>
百度地图Api进阶教程-地图鼠标左右键操作实例和鼠标样式6.html
查看>>
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
CSS中隐藏内容的3种方法及属性值
查看>>