mysql.zip免安装版配置

MYSQL ZIP免安装版配置

1. 下载MySQL 选择自己想要的.本次安装.我使用的是mysql-5.6.17-winx64 

 地址:http://dev.mysql.com/downloads/mysql/

 

2. 解压zip 文件. 在mysql 的根目录下找到  my-default.ini  复制出一个 my.ini 文件, 根据你需要的位置修改 my.ini 文件

 

a)在[mysqld]下追加
-------
basedir = "d:\\mysql"
datadir = "d:\\mysql\\data"
character-set-server = utf8
-------
b) 在[client]下追加
-------
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 install, and will be replaced if you
# *** upgrade to a newer version of MySQL.[mysqld]# 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 = 128M# 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 = .....
# datadir = .....
# port = .....
# server_id = .....basedir =D:\work\mysql-5.6.17-winx64
datadir =F:\db-data\mysql
character-set-server = utf8# 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 [client]
default-character-set = utf8

 

3. 启动服务

保存

my.ini

的配置,然后打开命令行切换到mysql解压目录下的bin 目录;

执行 mysqld.exe console 命令测试一下

D:\work\mysql-5.6.17-winx64\bin>mysqld.exe console
2014-04-22 19:11:09 0 [Warning] TIMESTAMP with implicit DEFAULT value is depreca
ted. Please use --explicit_defaults_for_timestamp server option (see documentati
on for more details).

然后执行 mysqld.exe console 命令启动mysql 

D:\work\mysql-5.6.17-winx64\bin>mysqld.exe --console
2014-04-22 19:11:33 0 [Warning] TIMESTAMP with implicit DEFAULT value is depreca
ted. Please use --explicit_defaults_for_timestamp server option (see documentati
on for more details).
2014-04-22 19:11:33 5624 [Note] Plugin 'FEDERATED' is disabled.
mysqld.exe: Table 'mysql.plugin' doesn't exist
2014-04-22 19:11:33 5624 [ERROR] Can't open the mysql.plugin table. Please run m
ysql_upgrade to create it.
2014-04-22 19:11:33 5624 [Note] InnoDB: Using atomics to ref count buffer pool p
ages
2014-04-22 19:11:33 5624 [Note] InnoDB: The InnoDB memory heap is disabled
2014-04-22 19:11:33 5624 [Note] InnoDB: Mutexes and rw_locks use Windows interlo
cked functions
2014-04-22 19:11:33 5624 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-04-22 19:11:33 5624 [Note] InnoDB: Not using CPU crc32 instructions
2014-04-22 19:11:33 5624 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2014-04-22 19:11:33 5624 [Note] InnoDB: Completed initialization of buffer pool
2014-04-22 19:11:33 5624 [Note] InnoDB: Highest supported file format is Barracu
da.
2014-04-22 19:11:33 5624 [Note] InnoDB: 128 rollback segment(s) are active.
2014-04-22 19:11:33 5624 [Note] InnoDB: Waiting for purge to start
2014-04-22 19:11:33 5624 [Note] InnoDB: 5.6.17 started; log sequence number 1600
607
2014-04-22 19:11:33 5624 [Warning] No existing UUID has been found, so we assumethat this is the first time that this server has been started. Generating a newUUID: dcd35109-ca0e-11e3-a872-003018a05bef.
2014-04-22 19:11:33 5624 [Note] Server hostname (bind-address): '*'; port: 3306
2014-04-22 19:11:33 5624 [Note] IPv6 is available.
2014-04-22 19:11:33 5624 [Note]   - '::' resolves to '::';
2014-04-22 19:11:33 5624 [Note] Server socket created on IP: '::'.
2014-04-22 19:11:33 5624 [ERROR] Fatal error: Can't open and lock privilege tabl
es: Table 'mysql.user' doesn't exist

注:这里出现异常 :Table 'mysql.user' doesn't exist 是因为我没有吧数据文件复制到 my.ini 里面配置的路径下,

数据文件是在 mysql 解压目录的下 的 data 目录, 吧整个目录里的内容复制到配置文件里写的目录里,然后启动

 

D:\work\mysql-5.6.17-winx64\bin>mysqld.exe --console
2014-04-22 19:16:31 0 [Warning] TIMESTAMP with implicit DEFAULT value is depreca
ted. Please use --explicit_defaults_for_timestamp server option (see documentati
on for more details).
2014-04-22 19:16:31 6180 [Note] Plugin 'FEDERATED' is disabled.
2014-04-22 19:16:31 6180 [Note] InnoDB: Using atomics to ref count buffer pool p
ages
2014-04-22 19:16:31 6180 [Note] InnoDB: The InnoDB memory heap is disabled
2014-04-22 19:16:31 6180 [Note] InnoDB: Mutexes and rw_locks use Windows interlo
cked functions
2014-04-22 19:16:31 6180 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-04-22 19:16:31 6180 [Note] InnoDB: Not using CPU crc32 instructions
2014-04-22 19:16:31 6180 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2014-04-22 19:16:31 6180 [Note] InnoDB: Completed initialization of buffer pool
2014-04-22 19:16:32 6180 [Note] InnoDB: Highest supported file format is Barracu
da.
2014-04-22 19:16:32 6180 [Note] InnoDB: 128 rollback segment(s) are active.
2014-04-22 19:16:32 6180 [Note] InnoDB: Waiting for purge to start
2014-04-22 19:16:32 6180 [Note] InnoDB: 5.6.17 started; log sequence number 1625
987
2014-04-22 19:16:32 6180 [Warning] No existing UUID has been found, so we assumethat this is the first time that this server has been started. Generating a newUUID: 8f19129f-ca0f-11e3-a876-003018a05bef.
2014-04-22 19:16:32 6180 [Note] Server hostname (bind-address): '*'; port: 3306
2014-04-22 19:16:32 6180 [Note] IPv6 is available.
2014-04-22 19:16:32 6180 [Note]   - '::' resolves to '::';
2014-04-22 19:16:32 6180 [Note] Server socket created on IP: '::'.
2014-04-22 19:16:32 6180 [Note] Event Scheduler: Loaded 0 events
2014-04-22 19:16:32 6180 [Note] mysqld.exe: ready for connections.
Version: '5.6.17'  socket: ''  port: 3306  MySQL Community Server (GPL)

证明mysql服务已启动

 

6. 设置登陆mysql root帐号的的密码


在mysql/bin 目录下打开新的命令行,输入mysql 回车

 

D:\work\mysql-5.6.17-winx64\bin>mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.17 MySQL Community Server (GPL)Copyright (c) 2000, 2014, 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>

看到上面类似内容说明登陆成功,此时的root帐号是没有密码的,而我也没打算要密码

想要设置可使用命令

直接运行命令行窗口输入下面的

 mysqladmin -u root password 

你的密码

 

 

这样就Ok了,

 

7. 安装mysql服务

在bin目录下执行命令

mysqld.exe --install MySQL5.6.17 --defaults-file="D:\work\mysql-5.6.17-winx64\my.ini" 

结果如下.

D:\work\mysql-5.6.17-winx64\bin>mysqld.exe --install MySQL5.6.17 --defaults-file
="D:\work\mysql-5.6.17-winx64\my.ini"
Service successfully installed.

8.启动服务

net start MySQL5.6.17
D:\work\mysql-5.6.17-winx64\bin>net start MySQL5.6.17
MySQL5.6.17 服务正在启动 .
MySQL5.6.17 服务已经启动成功。

注:若启动不成功修改注册表开始->运行->regedit
找HKEY_LOCAL_MECHINE---SYSTEM ---ControlSet001或ControlSet002中找Services,
再找MySQL项,修改 ImagePath值改为:"D:\work\mysql-5.6.17-winx64\bin\mysqld" --defaults-file="D:\work\mysql-5.6.17-winx64\my.ini" MySQL

 

最后为了方便添加环境变量.

MYSQL=D:\work\mysql-5.6.17-winx64

Path=%MYSQL%/bin;Path...

测试:

C:\Windows\System32>SET PATH=%MYSQL%\bin;%PATH%C:\Windows\System32>echo PATH
PATHC:\Windows\System32>echo %PATH%
D:\work\mysql-5.6.17-winx64\bin;D:\Program Files\java\jdk1.7.0_15\bin;D:\ProgramFiles\java\jdk1.7.0_15\jre\bin;C:\Windows\system32;C:\Windows;C:\Windows\System
32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\C:\Windows\System32>mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.17 MySQL Community Server (GPL)Copyright (c) 2000, 2014, 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>

 

到此结束.

 

 

转载于:https://www.cnblogs.com/mjorcen/p/3681328.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/399523.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Html中CSS之去除li前面的小黑点,和ul、LI部分属性方法

https://blog.csdn.net/business122/article/details/7973638 <style type"text/css"> list-style:none; </style>

Day3:集合

一、集合的定义及特性 1.集合的特性 1.1 去重&#xff0c;把一个列表变成集合&#xff0c;就自动去重了 1.2 关系测试&#xff0c;测试两组数据之间的交集、差集等关系 #!/usr/bin/env python # -*- coding:utf-8 -*- # Author:Hiuhung Wan list_1 [1,3,5,9,7,5,4] set_1 …

解决SQL命令行回退的问题

场景 在linux或者aix上安装后Oracle后&#xff0c;在SQL命令行下无法通过键盘的退格键回退&#xff0c;如下 解决方法 安装软件 # rpm -ivh rlwrap-0.41-1.el6.x86_64.rpm warning: rlwrap-0.41-1.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEYPrep…

p740备件号

http://www.gzyuxing.net/machine/show-113.htmlhttp://www.fuyuanit.cn/index.php?mProduct&ashow&id258http://www.fuyuanit.cn/index.php?mProduct&ashow&id258扩展柜如何确定:标签上一般有字样&#xff0c;到ibm knowledge center搜索关键字 5877 parts即…

Android listview addHeaderView 和 addFooterView 详解

addHeaderView()方法&#xff1a;主要是向listView的头部添加布局addFooterView()方法&#xff1a;主要是向listView的底部添加布局 需要注意的是添加布局的时候应该添加从父容器开始添加&#xff0c;而不能直接添加父容器中的子控件。例如&#xff1a;从一个xml布局文件中添加…

python教程--__init_.py的作用

__init__.py 的作用 python的每个模块的包中&#xff0c;都有一个__init__.py文件&#xff0c;有了这个文件&#xff0c;我们才能导入这个目录下的module。那么&#xff0c;__init__.py还有什么别的功能呢&#xff1f;其实&#xff0c;__init__.py里面还是可以有内容的&#xf…

在HTML中怎么去掉超链接的下划线?

<style type"text/css">a {text-decoration: none}</style> https://zhidao.baidu.com/question/253614370.html

ASP.NET AJAX Timer Trouble? Location is key.

If you’ve made much use of the ASP.NET AJAX Timer control, you may have noticed that it can behave somewhat unexpectedly. In this post, I’m going to take a closer look at how the Timer works and the most significant factor that influences it: Location.…

linq 分组求和的一般方法

//var query from d in expenseApplyModel.ApplyBillList.AsEnumerable() // group d by d.ExpenseItemID into g // select new // { // ExpenseItemID g.Key, // ExpenseAmount g.Sum(t > t.ExpenseAmount) // };//分组求和新添加的费用项目 var query expenseApplyMo…

在屏幕上打印杨辉三角

这就是杨辉三角&#xff0c;也叫贾宪三角。这于我们现在的学习联系最紧密的是2项式乘方展开式的系数规律。如图&#xff0c;在贾宪三角中&#xff0c;第3行的第三个数恰好对应着两数和的平方公式依次下去。 杨辉三角是一个由数字排列成的三角形数表&#xff0c;一般形式如下&am…

jquery 获取 A 标签 超级链接属性

var icon_nav_href1 $("#indexiconnavid>li:nth-child(1) a").attr("href"); //抓取当前url

apache ab 测试 apr_socket_connect(): 由于目标机器积极拒绝 无法连接

遇到这种情况一般是你开的并行数量太多了。。。例如:ab -c 1000 -n 10000 http://localhost/index.html 如此大的请求就会挂掉&#xff0c;不过还是有补救措施的&#xff0c;可以通过增加并发数上限解决这个问题&#xff0c;步骤如下&#xff1a; 1、停止Apache服务&#xff1b…

maven 结合idea入门

reference : http://www.cnblogs.com/ramantic/p/7735323.html转载于:https://www.cnblogs.com/tangchangcai/p/7735690.html

ImageView的属性android:scaleType,即ImageView.setScaleType(ImageView.ScaleType)

1 imageView.setScaleType(ImageView.ScaleType.FIT_XY ); 1 这里我们重点理解ImageView的属性android:scaleType&#xff0c;即ImageView.setScaleType(ImageView.ScaleType)。android:scaleType是控制图片如何resized/moved来匹对ImageView的size。ImageView.ScaleType / an…

CSS如何让DIV的宽度随内容的变化

让div根据内容改变大小 div{ width:auto; display:inline-block !important; display:inline; } https://www.cnblogs.com/limeiky/p/6289307.html

第一幕 基础起步

1、选择版本python2 or python3 话不多说 python3 2、不同操作系统下的安装配置python 2.1、Linux系统一般默认安装有python&#xff0c;打开终端窗口检查是否安装python&#xff0c;在终端输入python --version 或 python3 --version&#xff0c;如果有则会显示python版本&am…

footer置底的几种方式

/* 通过calc()函数让内容区块自动伸缩 */ .my-body{min-height: calc(71.7vh - 80px); } footer{height:50px; } 参考 :https://www.jianshu.com/p/6efe2c76a2dd

JAVA流程控制学习总结

1、块作用域语句&#xff08;复合语句&#xff09;即用一对花括号将若干语句括起来&#xff0c;目的是从语法上将多条语句解释为一条语句。这里要注意一点&#xff0c;java语言中块作用域语句可以嵌套&#xff0c;但不可以在嵌套的两层中声明同名的变量。举个错误的例子&#x…

如何在MATLAB下把模糊推理系统转化为查询表(转载)

如何在MATLAB下把模糊推理系统转化为查询表(原创) http://foundy.blog.163.com/blog/static/2633834420090212202156/?modeedit 在SIMULINK里把模糊逻辑生成查寻表&#xff08;原创&#xff09; http://foundy.blog.163.com/blog/static/2633834420100150439615/ 转载于:ht…

对SPA(单页面应用)的总结

目录 1、单页面应用&#xff08;SPA&#xff09;的概念&#xff1a;2、作用&#xff08;好处&#xff09;3、缺点4、实现SPA1、单页面应用&#xff08;SPA&#xff09;的概念&#xff1a; 1、single-page application是一种特殊的Web应用。它将所有的活动局限于一个Web页面中&a…