• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • MsSql
  • Mysql
  • oracle
  • MariaDB
  • DB2
  • SQLite
  • PostgreSQL
  • MongoDB
  • Redis
  • Access
  • 数据库其它
  • sybase
  • HBase
您的位置:首页 > 数据库 >Mysql > mysql5.7.11 winx64.zip安装配置的方法详解(图)

mysql5.7.11 winx64.zip安装配置的方法详解(图)

作者:匿名 字体:[增加 减小] 来源:互联网 时间:2018-12-05

匿名通过本文主要向大家介绍了mysql5.7.11,winx64.zip,安装配置等相关知识,希望本文的分享对您有所帮助
这篇文章主要为大家分享了mysql5.7.11安装配置方法图文教程,具有一定的参考价值,感兴趣的朋友可以参考一下

安装和配置MySql数据库系统。

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

进入mysql的bin目录下,

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有权利。

C:\Users\Administrator>cd D:
D:\

C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin

C:\Users\Administrator>d:

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

执行mysqld.exe --initialize 命令,

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize
D:\Program Files\mysql-5.7.11-winx64\bin>

创建了data目录

5.执行 mysqld -install命令

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install
Service successfully installed. //成功安装服务

6.执行mysqld.exe -nt --skip-grant-tables

注意:窗口无反应

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有权利。

C:\Users\Administrator>cd D:
D:\

C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin

C:\Users\Administrator>d:

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install
Service successfully installed. //服务安装成功

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe -nt --skip-grant-tables

7.重新打开dos窗口,执行mysql -u root

进入mysql命令行,执行命令use mysql; update user set authtication_string=Password('123456') where user="root"; set password=Password('123456');

按 Ctrl+C 复制代码

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有权利。

C:\Users\Administrator>mysqld.exe -nt --skip-grant-tables

C:\Users\Administrator>mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.11 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use mysql
Database changed
mysql> update user set authtication_string=Password('123456') where user="root"
 -> set password=Password('123456')
 ->

按 Ctrl+C 复制代码

8.在任务管理器中终止mysqld进程,开启mysql服务。

安装完成。

以上就是mysql5.7.11 winx64.zip安装配置的方法详解(图)的详细内容,更多请关注微课江湖其它相关文章!

分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • mysql5.7.11 winx64.zip安装配置的方法详解(图)
  • 64位Win10系统安装Mysql5.7.11的方法(案例详解)_MySQL
  • mysql 5.7.11 winx64安装配置教程_MySQL
  • Mysql5.7.11在windows10上的安装与配置(解压版)_MySQL
  • mysql 5.7.11 winx64快速安装配置教程_MySQL
  • mysql 5.7.11 winx64安装配置方法图文教程_MySQL

相关文章

  • 2018-12-05INFORMATION_SCHEMA.PROFILING
  • 2018-12-05详解mysql密码遗忘和登陆报错的问题解决
  • 2017-05-11MySQL数据库varchar的限制规则说明
  • 2017-05-11Windows平台下MySQL常用操作与命令
  • 2018-12-05MyEclipse连接MySQL数据库图文教程_MySQL
  • 2018-12-05SQLServer分布式事务问题
  • 2018-12-05jdbc-JDBC使用反射读取properties文件出错
  • 2018-12-05SQL连接查询介绍
  • 2017-05-11mysql 查询数据库中的存储过程与函数的语句
  • 2018-12-05MySQL优化全攻略-相关数据库命令

文章分类

  • MsSql
  • Mysql
  • oracle
  • MariaDB
  • DB2
  • SQLite
  • PostgreSQL
  • MongoDB
  • Redis
  • Access
  • 数据库其它
  • sybase
  • HBase

最近更新的内容

    • MySQL rownumber SQL生成自增长序号使用介绍
    • MySQL MEM_ROOT详细讲解
    • mysql数据库修改数据表引擎的方法
    • MySQL中基本语法与语句详解
    • MySQL如何设置远程连接数据库?
    • EXP-00056: ORACLE error 29275 encountered
    • PDO中执行SQL语句
    • Mysql数据库增量备份的实现思路方法介绍
    • winxp 安装MYSQL 出现Error 1045 access denied 的解决方法
    • MySQL索引的详解及实例教程

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有