mysql在windows下的安装配置
MySQL安装配置教程
MySql8.0安装配置
1.解压文件到某个目录
这里我将“mysql-8.0.29-win64”解压到“D:\program files\mysql-8.0.29-winx64”目录下
2.添加环境变量
由于我的mysql不是安装版,直接将文件解压后要配置环境变量,配置方式如下:
⏹此电脑–>属性–>高级–>环境变量
⏹选择path添加:mysql安装目录下的bin文件夹地址
3.创建mysql的配置文件
在自己的mysql解压目录下,新建一个my.ini文件,输入如下内容,请把:D:\program files\mysql-8.0.29-winx64改成自己的路径
用管理模式打开命令行窗口,切换到mysql的bin目录下,输入mysqld –install命令来安装服务
5、初始化数据文件
在命令行窗口继续输入mysqld --initialize-insecure --user=mysql命令,此时在mysql解压目录下会多出一个data文件夹,里面包含了初始化后的数据文件
在命令行窗口中继续输入”net start mysql”命令,来启动mysql的服务
7、修改mysql登录密码
按下windows键+R键,打开cmd窗口,输入”mysql –u root –p,要求输入密码,此时密码为空,按回车就可以进入mysql,但是为了安全要及时修改密码,在cmd的窗口中输入:ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码'; 不要忘了最后的分号,我忘了以后第二行又敲了一个,之后按回车即可。
实验一MySQL的安装与配置1.实验环境(1)操作系统Windows7;(2
实验一:MySQL的安装与配置1.实验环境(1)操作系统:Windows 7;(2)数据库管理系统:MySQL 5.5;(3)实验是否需要联网:是;(4)实验设计的难度:易。
2.实验概要说明(1)实验学时:2学时(学时就参照学校的课程安排,1学时按45分钟计算)(2)实验时长:90分钟(3)所需基础:计算机基础MySQL是一个关系型数据库管理系统,MySQL 最流行的关系型数据库管理系统,在WEB 应用方面MySQL是最好的RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件之一。
MySQL是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。
3.实验目的(1)了解MySQL数据库服务器;(2)理解和掌握MySQL 5.5服务器的安装过程和方法;4.实验内容(1)下载MySQL 5.5;(2)安装和配置MySQL 5.5;(3)测试MySQL 5.5。
5.实验操作步骤(1)下载MySQL 5.5;1)打开IE浏览器,在百度链接首页上输入“MySQL 5.5下载”,单击“百度一下”按钮。
2) 查找到下载的链接后,根据自己使用的Windows 操作系统的版本进行选择,如果系统是32位的选择MySQL 5.5的32位下载,如果是64位的请选择64位下载。
3) 要查看操作系统的版本,可以通过点击桌面上的“计算机”图标或“开始”菜单中的“计算机”项,单击鼠标右键,然后选择“属性”,打开“系统”选项,即可以查看到操作系统的版本和位数。
(2)MySQL 5.5的安装。
1)双击“mysql-5.5.37-win32.exe”文件。
2)单击“Next”按钮,选择同意协议,即勾选“I accept the tems in the License Agreement”,然后再单击“Next”按钮。
Windows下mysql-5.7.28下载、安装、配置教程图文详解
Windows下mysql-5.7.28下载、安装、配置教程图⽂详解最近需要更换mysql数据库的版本,写⼀篇⽂章,记录⼀下⼀、下载mysql数据库mysql的下载共有两种,⼀种是zip压缩⽂件,另⼀种是msi安装程序官⽅5.7版本zip压缩⽂件下载页⾯官⽅5.7版本msi安装程序下载页⾯我这⾥选择5.7.28-Windows64位点击左下⾓直接开始下载使⽤迅雷或者IDM等下载器,下载会快⼀点下载完成之后的两种⽂件⼆、安装mysql数据库我这⾥使⽤zip压缩⽂件安装,这是免安装的,配置的内容多⼀点1.解压缩安装⽂件注意:解压缩的路径⾥⾯不要出现中⽂2.配置mysql双击进⼊到能看到bin的⽬录中新建data⽂件夹然后再新建⽂本⽂件,重命名为my.ini(注意电脑可能未显⽰⽂件拓展名,my.ini⽂件不要放在data⽂件夹⾥)使⽤⽂本编辑器打开my.ini⽂件,将下⾯的配置⽂本内容复制到my.ini⽂件中修改为⾃⼰电脑的配置内容(⼀定要删除所有的中⽂⽂字所在⾏内容)保存并关闭编辑器[mysqld]# 设置服务端使⽤的字符集为utf-8character-set-server=utf8# 绑定IPv4地址bind-address = 0.0.0.0# 设置mysql的端⼝号port = 3306# 设置mysql的安装⽬录(能看到bin即可)basedir=D:\Applocations\64_mysql\mysql-5.7.28-winx64# 设置mysql数据库的数据的存放⽬录(能看到my.ini⽂件的⽬录)datadir=D:\Applocations\64_mysql\mysql-5.7.28-winx64\data# 允许最⼤连接数max_connections=2000# 创建新表时将使⽤的默认存储引擎default-storage-engine=INNODB# 设置mysql以及数据库的默认编码[mysql]default-character-set=utf8[mysql.server]default-character-set=utf8# 设置客户端默认字符集[client]default-character-set=utf83.安装mysql进⼊到bin/⽬录下在地址栏输⼊cmd,然后回车打开cmd命令⾏终端地址路径不能含有中⽂,如果前⾯没注意,可将mysql安装⽂件剪切到纯英⽂路径下在cmd终端⾥执⾏安装命令# 安装命令mysqld --install# 卸载命令mysqld --remove提⽰安装成功4.初始化mysql继续在终端执⾏初始化命令(你可以初始化多次,但是每次必须清空data⽂件夹)# mysql数据库初始化mysqld --initialize --user=root --console执⾏完成之后,会给mysql的root⽤户分配随机密码,如图5.登陆mysql在终端通过命令启动mysql服务# 启动mysql服务net start mysql# 停⽌mysql服务net stop mysql使⽤命令连接mysql注:这个密码就是前⾯初始化mysql⽣成的随机密码mysql -uroot -p密码mysql -uroot -p6.修改mysql的密码默认随机密码也可以使⽤,但是太难记了,可以设置⼀个简单的密码执⾏下⾯的命令设置mysql的密码# 设置mysql的密码set password = password('密码');# 退出mysql数据库exit7.配置mysql的环境变量以此'此电脑'-->'属性'-->'⾼级系统设置'-->'环境变量'在系统变量下新建系统变量变量名:MYSQL_HOME变量值:D:\Applocations\64_mysql\mysql-5.7.28-winx64(能看到bin⽬录的mysql解压路径)在path下新增环境变量复制代码代码如下:%MYSQL_HOME%\bin重新随意打开cmd终端,使⽤命令加修改的密码,就可以直接连接mysql了三、mysql数据库添加⽤户root⽤户是mysql数据库的超级⽤户,权限⽐较⾼,使⽤起来不安全,推荐新建⽤户,当然不新建也可以的在终端⾥使⽤以下命令新建⽤户并授予权限# 格式说明grant 权限 on 数据库.表 to ⽤户名@连接的ip地址 identified by'密码';# 实例,给密码是1234的test⽤户所有数据库的所有表的所有权限grant all on *.* to test@'%' identified by'1234';到此为⽌mysql安装完成,可以使⽤navicat连接数据库了总结以上所述是⼩编给⼤家介绍的Windows下mysql-5.7.28下载、安装、配置教程图⽂详解,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。
windows下mysql配置,my.ini配置文件
windows下mysql配置,my.ini配置⽂件 2019.9.20更新mysql5.7以上和5.7以下的版本存在参数配置不同5.7以上报不存在的字段有unknown variable 'innodb_additional_mem_pool_size=2M'解决:移除这个配置innodb_additional_mem_pool_size 和 innodb_use_sys_malloc 在 MySQL 5.7.4 中移除。
#unknown variable 'log-slow-queries'解决:mysql5.6版本以上,取消了参数log-slow-queries,更改为slow-query-log-file还需要加上 slow_query_log = on 否则,还是没⽤#log-slow-queries = /home/db/madb/log/slow-query.logslow_query_log = onslow-query-log-file = /home/db/madb/log/slow-query.loglong_query_time = 15.7以上版本使⽤ character_set_server=utf8 代替default-character-set = utf8#unknown variable myisam_max_extra_sort_file_size=100G5.7版本没有上⾯参数,去除基本配置,这个配置可以直接复制到mysql根⽬录下了my.ini⽂件中,[client]port=3306[mysql]no-beep# default-character-set=[mysqld]port=3306# mysql根⽬录basedir="D:\AppServ\mysql5.7\"# 放所有数据库的data⽬录datadir=D:\AppServ\mysql5.7\data# character-set-server=# 默认存储引擎innoDBdefault-storage-engine=INNODB# Set the SQL mode to strictsql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"#⽇志输出为⽂件log-output=FILE# 是否开启sql执⾏结果记录,必须要设置general_log_file参数,⽇志的路径地址# 即⽇志跟踪,1为开启,0为关闭general-log=0general_log_file="execute_sql_result.log"# 配置慢查询,5.7版本默认为1slow-query-log=1slow_query_log_file="user-slow.log"long_query_time=10#默认不开启⼆进制⽇志#log-bin=mysql-log#错误信息⽂件设置,会将错误信息放在data/mysql.err⽂件下log-error=mysql.err# Server Id.数据库服务器id,这个id⽤来在主从服务器中标记唯⼀mysql服务器server-id=1#lower_case_table_names:此参数不可以动态修改,必须重启数据库#lower_case_table_names = 1 表名存储在磁盘是⼩写的,但是⽐较的时候是不区分⼤⼩写#lower_case_table_names=0 表名存储为给定的⼤⼩和⽐较是区分⼤⼩写的#lower_case_table_names=2, 表名存储为给定的⼤⼩写但是⽐较的时候是⼩写的lower_case_table_names=1#限制数据的导⼊导出都只能在Uploads⽂件中操作,这个是在sql语句上的限制。
windows下mysql绿色版安装-电脑资料
windows下mysql绿色版安装-电脑资料mysql在windows下有msi包和压缩包两种类型,msi格式的是图形化安装,非常简单方便,这里就不赘述,下面主要做的是针对压缩包的mysql如何安装部署!部署环境:系统:windows server 2008mysql版本:mysql 5.5.35步骤如下:1.首先,去mysql 下载windows 绿色版2.解压下载下来的压缩包3.将解压出来的包复制到自己需要安装的盘符下,我这里是:c:\mysql4.添加windows环境变量,此步为了方便以后在命令行下,直接使用mysql相关命令在server 系统中,需要进入“服务器管理器” --> "更改系统属性" --> "高级"菜单 --> "环境变量" --> 在"PATH"变量后 --> "输入你安装的mysql的bin目录位置",我这里是:C:\mysql\bin5.简单修改mysql的配置文件:my.inimy.ini内容如下:[client]#password = your_passwordport = 3306socket = /tmp/mysql.sockdefault-character-set=utf8[mysqld]port = 3306socket = /tmp/mysql.sockbasedir=c:\mysqldatadir=c:\mysql\datacharacter_set_server=utf8skip-external-lockingkey_buffer_size = 16Kmax_allowed_packet = 1Mtable_open_cache = 4sort_buffer_size = 64Kread_buffer_size = 256Kread_rnd_buffer_size = 256Knet_buffer_length = 2Kthread_stack = 128Kserver-id = 1log-bin=mysql-bin#binlog_format=mixed#binlog_direct_non_transactional_updates=TRUE #innodb_data_home_dir = C:\\mysql\\data\\#innodb_data_file_path = ibdata1:10M:autoextend #innodb_log_group_home_dir = C:\\mysql\\data\\ #innodb_buffer_pool_size = 16M#innodb_additional_mem_pool_size = 2M# Set .._log_file_size to 25 % of buffer pool size#innodb_log_file_size = 5M#innodb_log_buffer_size = 8M#innodb_flush_log_at_trx_commit = 1#innodb_lock_wait_timeout = 50 [mysqldump]quickmax_allowed_packet = 16M[mysql]no-auto-rehash[myisamchk]key_buffer_size = 8Msort_buffer_size = 8M[mysqlhotcopy]interactive-timeout6.在命令行下,进入mysql的bin目录cd c:\mysql\bin执行如下命令,安装mysql:mysqld install MySQL --defaults-file="c:\mysql\my.ini" 注:如果安装出错,使用mysqld remove 移除7.现在就可以启动mysql了:启动命令如下:net start mysql停止命令如下:net stop mysql8.登陆mysql和linux登陆方法一样,自行测试。
win10下mysql8.0.18安装配置方法图文教程(windows版)
win10下mysql8.0.18安装配置⽅法图⽂教程(windows版)本⽂记录了mysql 8.0.18 安装配置图⽂教程,供⼤家参考,具体内容如下MySQL版本:8.0.18window环境:win101.⾸先我们需要下载ZIP解压配置安装包,如果有需要的可以到下⾯⽹址下载。
2.将安装包下载⾄F盘中新建的my_sql⽂件夹中并解压3.配置环境变量,右键我的电脑,选择属性---⾼级系统设置--环境变量在上下两个PATH⾥⾯,将解压包⾥⾯的bin⽂件夹所在的⽬录添加进去4.在mysql根⽬录下的bin⽂件夹创建my.ini 配置⽂件,我们发现解压后的⽬录并没有my.ini⽂件,没关系可以⾃⾏创建。
在安装根⽬录下添加 my.ini(新建⽂本⽂件,将⽂件类型改为.ini)配置⽂件内填写如下内容;[mysqld]#绑定IPv4和3306端⼝bind-address = 0.0.0.0port = 3306# 设置mysql的安装⽬录basedir=D:\MySQL\mysql-5.7.19-winx64# 设置mysql数据库的数据的存放⽬录datadir=D:\MySQL\mysql-5.7.19-winx64\data# 允许最⼤连接数max_connections=2005.windows搜索cmd(命令提⽰符),右键以管理员运⾏,将⽬录切换到bin⽂件夹所在的⽬录6.安装mysql ,键⼊命令:mysqld -install7.键⼊命令: mysqld --initialize --user=mysql --console 获取初始密码下图冒号后⾯的是密码7.启动服务器,键⼊命令net start mysql8.键⼊命令:mysql -u root -p ,注意这⾥让我们填写的密码是,刚刚我们获取的初始密码,密码很容易打错,如果出现问题⼀定要多试⼏遍。
9.修改密码:在MySQL中执⾏命令:ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';修改密码,注意命令尾的;⼀定要有,这是mysql的语法10.到此,安装部署就完成了。
Mysql在Windows系统快速安装部署方法(绿色免安装版)
Mysql在Windows系统快速安装部署⽅法(绿⾊免安装版)⾸先下载MySQL的是绿⾊免安装版,放到随便⼀个⽂件夹也可以,这次我直接放在了C盘步骤:1、将my-default.ini(ini如果没有后缀就是my-default)复制后改名为my.ini(ini如果没有后缀就是my),然后复制以下内容把原来的内容全替换掉[mysql]default-character-set=utf8[mysqld]#设置3306端⼝port=3306#系统基本⽬录basedir=C:/mysql-5.6#⽤户数据⽬录datadir=C:/mysql-5.6/data#服务端使⽤的字符集默认为8⽐特编码的latin1字符集character-set-server=utf8# 创建新表时将使⽤的默认存储引擎default-storage-engine=INNODB------------------复制到以上此为⽌*记得basedir和datadir改成数据库所在位置*⽂件可以使⽤记事本打开2、MySQL安装Windows服务(1)安装找到mysql的安装⽬录中的bin⽬录(快捷键:在此⽬录按住shift右键选择在此处打开命令⾏)执⾏mysqld –install在cmd窗⼝中输⼊命令“mysqld –install”C:\mysql-5.6\bin> mysqld –install安装windows服务成功 Service successfully installed.*****如果出现Install/Remove of the Service Denied! ,那是因为当前权限不够在Windows10系统的开始菜单上,单击⿏标右键,这时候出现的菜单中,我们选择命令提⽰符(管理员)点击打开再执⾏以上命令即可不过要⾃⼰打“cd C:\mysql-5.6\bin”去到这个⽂件夹(2)启动MySQL服务在cmd窗⼝中输⼊命令“net start MySQL”C:\mysql-5.6\bin> net start MySQL显⽰:MySQL 服务正在启动 .MySQL 服务已经启动成功。
mysql8.0windowsx64zip包安装配置教程
mysql8.0windowsx64zip包安装配置教程mysql 8 windows 版本zip⽅式安装步骤()1、解压ZIP⽂件到指定⽬录下:如D:\mysql-8.0.11-winx642、新建my.ini配置⽂件并粘贴修改如下内容:(1)baseidr路径(2)datadir路径[mysql]# 设置mysql客户端默认字符集default-character-set=utf8[mysqld]#设置3306端⼝port = 3306# 设置mysql的安装⽬录basedir=D:\\mysql-8.0.11-winx64# 设置mysql数据库的数据的存放⽬录datadir=D:\\mysql-8.0.11-winx64\\data# 允许最⼤连接数max_connections=200# 服务端使⽤的字符集默认为UTF8character-set-server=utf8# 创建新表时将使⽤的默认存储引擎default-storage-engine=INNODB3、cmd命令以管理员⾝份进⼊到控制台指定的mysql bin⽬录下运⾏mysqld install命令。
注意:这⾥需要以管理员⾝份运⾏!4、安装成功后启动mysql服务:net start mysql5、如果报错:有⼈说是从5.7.6开始需要执⾏mysqld --initialize⽅法()。
解决⽅法如下:1)执⾏mysqld -remove命令将以前的错误安装删除,否则会提⽰已经安装2)执⾏mysqld --initialize --user=mysql --console 命令后并且记住 localhost的默认密码。
(如果报错,请先删除原来的data ⽬录,让系统⾃动重新创建)再执⾏mysqld install,再执⾏net start mysql启动MySQL,⼀切ok6、⽤默认密码登录mysql 然后执⾏如下命令进⾏修改密码:ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'精彩专题分享:以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
Windows下MySQL分步安装图解及使用说明
Windows下MySQL分步安装及简单使用说明 一、背景知识学习和使用数据库,首先要选择并安装某数据库管理系统。
目前,主流的数据库管理系统有Oracle、MS SQL Server、DB2、Informix、Sybase、PostgreSQL、VFP、Access和MySQL等。
MySQL是最流行的开放源码SQL数据库管理系统,它是由MySQL AB公司开发、发布并支持的。
自1996年开始,从一个简单的SQL 工具到当前“世界上最受欢迎的开放源代码数据库”的地位,MySQL已经走过了一段很长的路。
MySQL AB是由多名MySQL开发人创办的一家商业公司。
它是一家第二代开放源码公司,结合了开放源码价值取向、方法和成功的商业模型。
根据MySQL AB(MySQL的发布者)发布的信息,到2010年,MySQL的装机量在全世界已经超过了1000万台。
在MySQL的网站(/)上,给出了关于MySQL和MySQL 的最新信息:●MySQL是一种关联数据库管理系统。
●MySQL软件是一种开放源码软件。
●MySQL数据库服务器具有快速、可靠和易于使用的特点。
●有大量可用的共享MySQL软件。
MySQL在内部构件和可移植性等方面具有以下的主要特性:●使用C和C++编写●用众多不同的编译器进行了测试●能够工作在众多不同的平台上。
●使用GNU Automake、Autoconf和Libtool进行移植。
●提供了用于C、C++、Eiffel、Java、Perl、PHP、Python、Ruby和Tcl的API。
●采用核心线程的完全多线程 如果有多个CPU,它能方便地使用这些CPU。
●提供了事务性和非事务性存储引擎。
●使用了极快的“B树”磁盘表(MyISAM)和索引压缩。
●添加另一个存储引擎相对简单。
如果打算为内部数据库添加一个SQL接口,该特性十分有用。
●极快的基于线程的内存分配系统。
●通过使用优化的“单扫描多连接”,能实现极快的连接。
第2章 MySQL的安装与配置
— 12 —
2.1 在Windows操作系统下安装与配置MySQL ➢ 2.1.2 安装与配置MySQL
步骤8 右击“此电脑”图标,在弹出
的快捷菜单中选择“属性”,打开“系统” 窗口,然后单击窗口左侧列表中的“高级 系统设置”项,如左图所示。
打开高级系统设置
— 13 —
2.1 在Windows操作系统下安装与配置MySQL ➢ 2.1.2 安装与配置MySQL
# 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模式 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLE S
按钮,执行“命令提示符(管理 员)”命令,打开命令行窗口,如 左图所示。
—9—
2.1 在Windows操作系统下安装与配置MySQL ➢ 2.1.2 安装与配置MySQL
步骤5
在窗口中输入“F:”命令并按回车键确认,跳转到F盘根目录,然后
输 入 “ cd mysql-5.7.18-winx64\bin ” 并 按 回 车 键 确 认 , 跳 转 到 “ F:\mysql-
提示
用 户 可 以 把 MySQL 安 装 在 系 统 盘 , 也 可以安装在其他盘,但实际应用中,数据目 录一般不会设在系统盘,因为随着系统运行 时间的推移,数据量会越来越大。
如何在Windows系统上安装和配置MySQL
如何在Windows系统上安装和配置MySQL在Windows系统上安装和配置MySQL1. 引言MySQL是一种流行的开源数据库管理系统,广泛用于Web应用程序和互联网服务中。
本文将详细介绍如何在Windows系统上安装和配置MySQL,帮助读者快速搭建和使用数据库。
2. 下载MySQL安装文件首先,我们需要下载MySQL安装文件。
在官方网站上可以找到最新版本的MySQL安装包。
根据自己的系统架构(32位或64位),选择对应的安装文件下载。
3. 安装MySQL双击下载的安装文件,打开安装向导。
按照步骤提示,选择安装类型和安装位置。
建议采用默认配置,点击"Next"继续安装。
4. 设定root用户密码在安装过程中,会要求设置root用户的密码。
root用户是MySQL的超级用户,具有最高权限。
为了安全起见,密码应该是复杂且容易记住的组合。
设置完密码后,点击"Next"继续。
5. 选择安装组件在安装过程中,可以选择需要安装的MySQL组件。
根据自己的需求,选择相应的组件。
一般来说,选择默认配置即可满足大部分用户的需求。
6. 配置MySQL服务在安装过程中,会弹出配置MySQL服务的选项。
选择"Server Machine"作为配置类型,这样MySQL将以Windows服务的形式运行。
点击"Next"继续。
7. 完成安装安装向导会根据之前的配置选项自动完成安装过程。
等待安装完成后,点击"Finish"按钮退出安装向导。
8. 启动MySQL服务在开始菜单中找到MySQL安装目录,打开并进入"bin"文件夹。
按住Shift键,右击空白处,在弹出的菜单中选择"在此处打开命令窗口"。
在命令窗口中输入以下命令启动MySQL服务:```mysqld --initialize-insecure```这个命令将初始化MySQL的数据目录,让MySQL可以正常运行。
MySQL 64_32位安装详细图解(图文)
win7 32/64位安装MySQL详细步骤(图文)在安装这个MySQL之前一定要卸干净之前的软件。
google到一些方法来尝试,这里分享一下我的做法:1、控制面板里的增加删除程序内进行删除2、开始->运行->regedit 进入注册表,找到以下地方(或者进入注册表后ctrl+F,查找mysql相关的都删除了)HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application \MySQL目录删除HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application \MySQL目录删除HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Applica tion\MySQL目录删除3、如果这时还提示无法删除文件夹的,可以启动任务管理器—进程,把mysql的那个任务结束它,然后就可以删除了。
通过上面的操作后应该是干净的了(这是我对自己电脑的做法,如果还不行那得另找方法了),接下来进入正题。
下载安装包的可以在官网下载:/archives.php?p=mysql-5.5&o=-win下面以win7 64位为例:1.下载mysql-5.5.33-winx64.msi回来并且双击安装进入欢迎界面2.选择接受,next3.Typical(经典型),Complete(完全安装),Custom(自定义),这里我选择Custom安装5.进行安装installnextfinish至此安装已经完成了,接下来要对mysql进行配置1.选择配置方式。
Detailed Configuration(手动配置),Standard Configuration(标准配置)。
这里我选择了手动方式,也可以标准方式。
01MySQL数据库安装明细手册-10页word资料
MySQL for Windows数据库安装操作手册对于大多数朋友而言,MySQL的安装非常简单,基本上一路next下来,就可以完成安装。
但是知其然更要知其所以然,在此结合MySQL联机文档来详细介绍MySQL的安装,让我们更清楚MySQL的安装。
安装总共20步,1 - 5步完成MySQL基本安装;6 -18完成MySQL优化安装;19-20完成系统完善。
环境准备:1、32位Windows操作系统,例如9x、Me、NT、2000、XP或Windows Server 20032、TCP/IP协议支持(一般系统都默认支持)3、MySQL5.0安装包(可以到官网上下载)开始安装:1、双击安装程序,出现安装界面:2、点击“next”,出现如下界面简述:Typical(典型安装): 安装MySQL服务器、mysql命令行客户端和命令行实用程序。
命令行客户端和实用程序包括mysqldump、myisamchk 和其它几个工具来帮助你管理MySQL服务器。
推荐一般用户安装。
Complete(完全安装): 安装将安装软件包内包含的所有组件。
完全安装软件包包括的组件包括嵌入式服务器库、基准套件、支持脚本和文档。
Custom(定制安装): 安装允许你完全控制你想要安装的软件包和安装路径。
一般而言,推荐选择‘典型安装’。
MySQL的基本功能都包含其中,也满足我们的基本功能需要。
3、点击“next”,出现如下界面简述:当前配置:安装类型:典型安装路径:C:\Program Files\MySQL Server 5.0\此处描述了当前安装的类型以及即将被安装的位置。
4、点击“Install”,经过一段安装进度时间之后,出现如下界面, 选择第三项“skip sign-up”,点击“next”简述:免费创建一个MySQL帐户登陆MySQL跳过免费创建一个MySQL帐户,连接网络登陆http://mysql/register.php 完成一系列注册,成为MySQL的一个注册用户。
win7_64位下如何安装配置mysql_5.6.10_130328
win7 64位下如何安装配置mysql1、MySQL Community Server 5.6.10官方网站下载mysql-5.6.10-winx64.zip2、解压到d:\MySQL.(路径自己指定)3、在d:\MySQL下新建my.ini配置文件,内容如下:*****************配置文件开始*********************# MySQL Server Instance Configuration File# ---------------------------------------------------------------------- # Generated by the MySQL Server Instance Configuration Wizard### Installation Instructions# ---------------------------------------------------------------------- ### CLIENT SECTION# ----------------------------------------------------------------------# The following options will be read by MySQL client applications.# Note that only client applications shipped by MySQL are guaranteed# to read this section. If you want your own MySQL client program to# honor these values, you need to specify it as an option during the# MySQL client library initialization.#[client]port=3306[mysql]default-character-set=gbk# SERVER SECTION# ----------------------------------------------------------------------## The following options will be read by the MySQL Server. Make sure that# you have installed the server correctly (see above) so it reads this# file.#[mysqld]# The TCP/IP Port the MySQL Server will listen onport=3306#Path to installation directory. All paths are usually resolved relative to this. basedir="d:\MySQL\"#Path to the database rootdatadir="d:\MySQL\Data"[WinMySQLadmin]Server="d:\MySQL\bin\mysqld.exe"# The default character set that will be used when a new schema or table is# created and no character set is defineddefault-character-set=gbk# The default storage engine that will be used when create new tables when default-storage-engine=INNODB# Set the SQL mode to strictsql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"# The maximum amount of concurrent sessions the MySQL server will# allow. One of these connections will be reserved for a user with# SUPER privileges to allow the administrator to login even if the# connection limit has been reached.max_connections=100# Query cache is used to cache SELECT results and later return them# without actual executing the same query once again. Having the query # cache enabled may result in significant speed improvements, if your# have a lot of identical queries and rarely changing tables. See the# "Qcache_lowmem_prunes" status variable to check if the current value # is high enough for your load.# Note: In case your tables change very often or if your queries are# textually different every time, the query cache may result in a# slowdown instead of a performance improvement.query_cache_size=0# The number of open tables for all threads. Increasing this value# increases the number of file descriptors that mysqld requires.# Therefore you have to make sure to set the amount of open files# allowed to at least 4096 in the variable "open-files-limit" in# section [mysqld_safe]table_cache=256# Maximum size for internal (in-memory) temporary tables. If a table# grows larger than this value, it is automatically converted to disk# based table This limitation is for a single table. There can be many # of them.tmp_table_size=26M# How many threads we should keep in a cache for reuse. When a client# disconnects, the client's threads are put in the cache if there aren't # more than thread_cache_size threads from before. This greatly reduces # the amount of thread creations needed if you have a lot of new# connections. (Normally this doesn't give a notable performance# improvement if you have a good thread implementation.)thread_cache_size=8#*** MyISAM Specific options# The maximum size of the temporary file MySQL is allowed to use while # recreating the index (during REPAIR, ALTER TABLE or LOAD DATA INFILE.# If the file-size would be bigger than this, the index will be created # through the key cache (which is slower).myisam_max_sort_file_size=100G# If the temporary file used for fast index creation would be bigger# than using the key cache by the amount specified here, then prefer the # key cache method. This is mainly used to force long character keys in # large tables to use the slower key cache method to create the index. myisam_sort_buffer_size=52M# Size of the Key Buffer, used to cache index blocks for MyISAM tables. # Do not set it larger than 30% of your available memory, as some memory # is also required by the OS to cache rows. Even if you're not using# MyISAM tables, you should still set it to 8-64M as it will also be# used for internal temporary disk tables.key_buffer_size=40M# Size of the buffer used for doing full table scans of MyISAM tables. # Allocated per thread, if a full scan is needed.read_buffer_size=64Kread_rnd_buffer_size=256K# This buffer is allocated when MySQL needs to rebuild the index in# REPAIR, OPTIMZE, ALTER table statements as well as in LOAD DATA INFILE # into an empty table. It is allocated per thread so be careful with# large settings.sort_buffer_size=256K#*** INNODB Specific options ***innodb_data_home_dir="d:\MySQL\Data\INNODB\"# Use this option if you have a MySQL server with InnoDB support enabled # but you do not plan to use it. This will save memory and disk space# and speed up some things.#skip-innodb# Additional memory pool that is used by InnoDB to store metadata# information. If InnoDB requires more memory for this purpose it will # start to allocate it from the OS. As this is fast enough on most# recent operating systems, you normally do not need to change this# value. SHOW INNODB STATUS will display the current amount used.innodb_additional_mem_pool_size=2M# If set to 1, InnoDB will flush (fsync) the transaction logs to the# disk at each commit, which offers full ACID behavior. If you are# willing to compromise this safety, and you are running small# transactions, you may set this to 0 or 2 to reduce disk I/O to the# logs. Value 0 means that the log is only written to the log file and# the log file flushed to disk approximately once per second. Value 2# means the log is written to the log file at each commit, but the log# file is only flushed to disk approximately once per second.innodb_flush_log_at_trx_commit=1# The size of the buffer InnoDB uses for buffering log data. As soon as# it is full, InnoDB will have to flush it to disk. As it is flushed# once per second anyway, it does not make sense to have it very large# (even with long transactions).innodb_log_buffer_size=1M# InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and# row data. The bigger you set this the less disk I/O is needed to# access data in tables. On a dedicated database server you may set this# parameter up to 80% of the machine physical memory size. Do not set it# too large, though, because competition of the physical memory may# cause paging in the operating system. Note that on 32bit systems you# might be limited to 2-3.5G of user level memory per process, so do not# set it too high.innodb_buffer_pool_size=77M# Size of each log file in a log group. You should set the combined size# of log files to about 25%-100% of your buffer pool size to avoid# unneeded buffer pool flush activity on log file overwrite. However,# note that a larger logfile size will increase the time needed for the# recovery process.innodb_log_file_size=39M# Number of threads allowed inside the InnoDB kernel. The optimal value# depends highly on the application, hardware as well as the OS# scheduler properties. A too high value may lead to thread thrashing.innodb_thread_concurrency=8*****************配置文件结束*********************配置文件也放在了附件里,大家可以根据需要修改。
windows64位下mysql8.0.13安装配置方法图文教程
windows64位下mysql8.0.13安装配置⽅法图⽂教程本⽂为⼤家分享了mysql 8.0.13 安装配置教程,供⼤家参考,具体内容如下先去官⽹下载完成后解压解压完是这个样⼦配置系统环境变量复制解压后的mysql到C盘或者其他磁盘下我们去系统的环境变量的path⾥添加⼀个mysql的配置指向mysql的bin⽬录配置初始化的my.ini⽂件的⽂件解压后的⽬录并没有的my.ini⽂件,没关系可以⾃⾏创建在安装根⽬录下添加的my.ini(新建⽂本⽂件,将⽂件类型改为的.ini),写⼊基本配置:[mysqld]# 设置3306端⼝port=3306# 设置mysql的安装⽬录basedir=C:\Program Files\MySQL# 设置mysql数据库的数据的存放⽬录datadir=C:\Program Files\MySQL\Data# 允许最⼤连接数max_connections=200# 允许连接失败的次数。
max_connect_errors=10# 服务端使⽤的字符集默认为UTF8character-set-server=utf8# 创建新表时将使⽤的默认存储引擎default-storage-engine=INNODB# 默认使⽤“mysql_native_password”插件认证#mysql_native_passworddefault_authentication_plugin=mysql_native_password[mysql]# 设置mysql客户端默认字符集default-character-set=utf8[client]# 设置mysql客户端连接服务端时默认使⽤的端⼝port=3306default-character-set=utf8安装的MySQL的在安装时,尽量⽤管理员⾝份运⾏CMD,否则在安装时会报错,会导致安装失败的情况进⼊CMD直接进⼊的mysql的⽬录在MySQL的安装⽬录的仓⽬录下执⾏命令:mysqld --initialize --console注意![注意] [MY-010454] [服务器]为root @ localhost⽣成临时密码:9P0gYk-?0,kT其中root @ localhost:后⾯的9P0gYk-?0,kT就是初始密码(不含⾸位空格)。
mysql数据库搭建流程
mysql数据库搭建流程MySQL是一种广泛使用的关系型数据库管理系统,是开源软件,各个平台上都可以使用,具有性能稳定、操作简易等优点,成为非常流行的数据库选择。
下面就来介绍一下MySQL数据库搭建流程。
1.安装MySQL数据库管理系统首先需要下载对应平台的MySQL安装包,这里以Windows平台为例。
下载完成后,双击运行安装程序,按照提示完成MySQL安装,在过程中需要设置MySQL的管理员账户和密码,并可以选择安装的组件。
2.配置MySQL服务在MySQL安装完成后,需要进行服务的配置。
在Windows平台下,打开“服务”管理器,找到MySQL服务,并启动服务。
如果MySQL服务启动失败,可能需要更改MySQL配置文件my.ini的默认路径,将MySQL程序路径修改为正确路径,即可启动服务。
3.创建数据库和用户在MySQL服务已经成功启动后,需要在MySQL中创建一个新数据库以及一个管理用户。
可以使用MySQL客户端工具,如MySQL Workbench等工具进行创建。
首先登录MySQL,在QUERY上输入CREATE DATABASE 数据库名字;,完成创建数据库。
然后在QUERY上输入CREATE USER '用户名称'@'localhost' IDENTIFIED BY '用户密码';,完成创建用户。
4.为用户授权完成用户的创建后,需要为其授权,以便用户可以对创建的数据库进行操作。
使用GRANT语句进行授权,在QUERY上输入GRANT ALL PRIVILEGES ON 数据库名字.* TO '用户名称'@'localhost' IDENTIFIED BY '用户密码';,完成用户的授权。
5.远程访问的配置如果需要让外部机器可以访问MySQL,则需要进行相关配置,如取消bind address、开放MySQL默认端口3306等。
mysql安装图解教程(for windows)
mysql安装图解教程(for windows)一、MySQL下载与安装1、下载介绍MySQL 开源的东西官网/MySQL的下载地址:/downloads/ 因为要从这个地址下载不少东东,所以详细分析一下这个网页。
·关于镜像网站,没有大陆的,有香港和台湾的。
选择它,是为了加快下载速度,不过也不是绝对的,看你自己咯,一般我都选第一个的。
·这里提供的图解是4.1的,比较老的了,但是安装过程都是差不多的。
(最主要懂得怎么去官网找适合自己的版本下载)点击这个链接,进入下载页面,可以看到,当前版本是4.1.8。
找到“Windows downloads”,如图,因为我使用的是Windows平台。
这里我选择“Without installer (unzip in C:\)”这个版本,因为我喜欢不需要安装的软件,用的不高兴,随时可以直接删除,当然需要自己配置一下才能使用。
点击“Pick a mirror”,进入一个页面,那里的表格可以不填,直接选择一个链接下载它就可以了。
下载后的文件名是“mysql-4.1.8-win-noinstall.zip”,大小是35.2M。
·关于“Graphical c lients” 图形界面的客户端,选择一个吧,可以进行图形化操作,何乐而不为?只不过以前我一直用“MySQL Control Center”的,现在却不开发了。
选择“MySQL Administrator”吧,下载后的文件名是“mysql-administrator-1.0.19-win-noinstall.zip”(这里我选择的是不需要安装版本),大小是4.5M。
同样也选择“MySQL Query Browser”,它是来查询的。
下载后的文件名是“mysql-query-browser-1.1.5-wi n-noin stall.zip”(不需要安装版本),大小是4.5M。
关于这方面的软件比较多,如:MySQL-Front,EMS MySQL Manager等,比较好用,不过它们是要Mone y的。
Apache+php+mysql在windows下的安装与配置图解(最新版)
Apache+php+mysql在windows下的安装与配置图解(最新版)先准备好软件:Apache官方下载地址:apache_2.0.55-win32-x86-no_ssl.msi,更多版本在这里;php官方下载地址:php-5.0.5-Win32.zip,更多镜像下载地址,更多版本下载;mysql官方下载地址:mysql-4.1.14-win32.zip,更多镜像下载地址,更多版本下载。
一、安装Apache,配置成功一个普通网站服务器运行下载好的“apache_2.0.55-win32-x86-no_ssl.msi”,出现如下界面:出现Apache HTTP Server 2.0.55的安装向导界面,点“Next”继续确认同意软件安装使用许可条例,选择“I accept the terms in the license agreem ent”,点“Next”继续将Apache安装到Windows上的使用须知,请阅读完毕后,按“Next”继续设置系统信息,在Network Domain下填入您的域名(比如:),在Server Name下填入您的服务器名称(比如:,也就是主机名加上域名),在Administrator's Email Address下填入系统管理员的联系电子邮件地址(比如:yinpeng@),上述三条信息仅供参考,其中联系电子邮件地址会在当系统故障时提供给访问者,三条信息均可任意填写,无效的也行。
下面有两个选择,图片上选择的是为系统所有用户安装,使用默认的80端口,并作为系统服务自动启动;另外一个是仅为当前用户安装,使用端口8080,手动启动。
一般选择如图所示。
按“N ext”继续。
]选择安装类型,Typical为默认安装,Custom为用户自定义安装,我们这里选择C ustom,有更多可选项。
按“Next”继续出现选择安装选项界面,如图所示,左键点选“Apache HTTP Server 2.0.55”,选择“This feature, and all subfeatures, will be installed on local hard drive.”,即“此部分,及下属子部分内容,全部安装在本地硬盘上”。
windows下mysql的安装
1、MYSQL的三种安装类型mysql有3种安装类型:Typical(典型安装)、Complete(完全安装)和Custom(定制安装)。
安装只安装MySQL服务器、mysql命令行客户端和命令行实用程序。
命令行客户端和实用程序包括mysqldump、myisamchk和其它几个工具来帮助你管理MySQL服务器。
安装将安装软件包内包含的所有组件。
完全安装软件包包括的组件包括嵌入式服务器库、基准套件、支持脚本和文档。
安装允许你完全控制你想要安装的软件包和安装路径。
2、MYSQL的安装如果你选择Typical(典型安装)或Complete(完全安装)安装并点击Next按钮,你将进入确认窗口确认选择并开始安装。
如果你选择定制安装并点击Next按钮,你将进入定制安装对话框如果你想要更改MySQL安装帮助安装的安装路径或具体组件,应当选择Custom(定制安装)安装。
所有可用组件列入定制安装对话框左侧的树状视图内。
未安装的组件用红色X 图标表示;已经安装的组件有灰色图标。
要想更改组件,点击该组件的图标并从下拉列表中选择新的选项。
可以点击安装路径右侧的Change...按钮来更改默认安装路径。
选择了安装组件和安装路径后,点击Next按钮进入确认对话框。
选择了安装类型和可选安装组件后,则进入确认对话框。
该对话框中将显示安装类型和安装路径供检查。
如果你满意设定值要想安装MySQL,点击Install(安装)按钮。
要想更改设定值,点击Back按钮。
要想退出MySQL安装帮助不再安装 MySQL,点击Cancel按钮。
完成安装后,将出现注册选项和MySQL网址。
注册后便可以访问处的MySQL论坛,可以在报告缺陷,并可以注册为时事新闻订户。
在安装器的最后一个窗口内,提供了安装摘要,并提供选项以启动MySQL Configuration Wizard(配置向导),可以用来创建配置文件,安装MySQL服务并进行安全配置。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
MySQL在Windows下的基本配置文章分类:数据库说明:本文针对mysql-noinstall版本,也就是解压缩版在Windows下的基本配置操作系统: Windows XPMySQL版本: mysql-5.1.50-win321、下载MySQL解压包 mysql-noinstall-5.1.50-win32.zip解压缩到某个目录。
例如:D:\Java\mysql2、配置MySQL的根目录,里面有多个文件名如my-****.ini形式的文件,这就是MySQL配置的样例文件。
可以选取一个将其名字改为my.ini,MySQL启动的时候就是读取这个my.ini文件来决定数据库的各项参数。
在my.ini文件中需要进行配置的主要是两个方面,一个是客户端,一个是服务器端。
修改my.ini文件,添加以下内容:Sql代码1.# The following options will be passed to all MySQL clients2.[client]3.#password = your_password4.#客户端端口5.port = 33066.socket = /tmp/mysql.sock7.# 设置mysql客户端的字符集8.default-character-set=gbkSql代码1.# The MySQL server2.[mysqld]3.port = 33064.socket = /tmp/mysql.sock5.6.# 设置mysql服务器的字符集7.default-character-set=gbk8.9.# 设置mysql的默认存储引擎10.default-storage-engine=INNODB11.12.# 设置mysql的安装目录13.basedir=d:/Java/mysql/mysql-5.1.50-win3214.15.# 设置mysql数据库的数据的存放目录,必须是data16.datadir=d:/Java/mysql/mysql-5.1.50-win32/data完成后保存即可。
3、启动数据库为了方便,可以把数据库注册成一个服务:进入D:\Java\mysql\mysql-5.1.50-win32\bin 目录,运行命令:mysqld --install mysql这样就会在系统服务中注册了一个名字为mysql的服务( mysqld --remove mysql 卸载服务)在环境变量path中加入 D:\Java\mysql\mysql-5.1.50-win32\bin然后就可以正常使用MySQL数据库了.启动数据库服务:net start mysql关闭服务:net stop mysql4、使用MySQL数据库登录数据库:输入命令:mysql -u root -p回车后提示输入密码。
mysql解压缩版初次安装管理员root的密码为空,因此直接再回车一次就登入mysql 数据库了。
常用登录参数:-h 是指定登录服务器地址,-u 指定用户-p 指定密码如果想为root用户加上密码,可以退出数据库mysql>quit,然后使用如下命令设置root用户的密码:mysqladmin -uroot password 123456设定密码为123456至此,MySQL数据库的基本配置就完成了,可以通过客户端或是程序来使用这个数据库了。
附:现用my.ini (根据my-large.ini修改 )Sql代码1.# Example MySQL config file for large systems.3.# This is for a large system with memory = 512M where the system runs mainly4.# MySQL.5.#6.# You can copy this file to7.# /etc/f to set global options,8.# mysql-data-dir/f to set server-specific options (in this9.# installation this directory is C:\mysql\data) or10.# ~/f to set user-specific options.11.#12.# In this file, you can use all long options that a program supports.13.# If you want to know which options a program supports, run the program14.# with the "--help" option.15.16.# The following options will be passed to all MySQL clients17.[client]18.#password = your_password19.port = 330620.socket = /tmp/mysql.sock21.default-character-set=gbk22.23.# Here follows entries for some specific programs24.25.# The MySQL server26.[mysqld]27.port = 330628.socket = /tmp/mysql.sock29.default-character-set=gbk30.default-storage-engine=INNODB31.basedir=d:/Java/mysql/mysql-5.1.50-win3232.datadir=d:/Java/mysql/mysql-5.1.50-win32/data33.skip-locking34.key_buffer_size = 256M35.max_allowed_packet = 1M36.table_open_cache = 25637.sort_buffer_size = 1M38.read_buffer_size = 1M39.read_rnd_buffer_size = 4M40.myisam_sort_buffer_size = 64M41.thread_cache_size = 842.query_cache_size= 16M43.# Try number of CPU's*2 for thread_concurrency44.thread_concurrency = 846.# Don't listen on a TCP/IP port at all. This can be a security enhancement,47.# if all processes that need to connect to mysqld run on the same host.48.# All interaction with mysqld must be made via Unix sockets or namedpipes.49.# Note that using this option without enabling named pipes on Windows50.# (via the "enable-named-pipe" option) will render mysqld useless!51.#52.#skip-networking53.54.# Replication Master Server (default)55.# binary logging is required for replication56.log-bin=mysql-bin57.58.# binary logging format - mixed recommended59.binlog_format=mixed60.61.# required unique id between 1 and 2^32 - 162.# defaults to 1 if master-host is not set63.# but will not function as a master if omitted64.server-id = 165.66.# Replication Slave (comment out master section to use this)67.#68.# To configure this host as a replication slave, you can choose between69.# two methods :70.#71.# 1) Use the CHANGE MASTER TO command (fully described in our manual) -72.# the syntax is:73.#74.# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,75.# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;76.#77.# where you replace <host>, <user>, <password> by quoted stringsand78.# <port> by the master's port number (3306 by default).79.#80.# Example:81.#82.# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,83.# MASTER_USER='joe', MASTER_PASSWORD='secret';84.#85.# OR86.#87.# 2) Set the variables below. However, in case you choose this method, then88.# start replication for the first time (even unsuccessfully, forexample89.# if you mistyped the password in master-password and the slave fails to90.# connect), the slave will create a file, and any later91.# change in this file to the variables' values below will be ignored and92.# overridden by the content of the file, unless you shutdown93.# the slave server, delete and restart the slaver server.94.# For that reason, you may want to leave the lines below untouched95.# (commented) and instead use CHANGE MASTER TO (see above)96.#97.# required unique id between 2 and 2^32 - 198.# (and different from the master)99.# defaults to 2 if master-host is set100.# but will not function as a slave if omitted101.#server-id = 2102.#103.# The replication master for this slave - required104.#master-host = <hostname>105.#106.# The username the slave will use for authentication when connec ting107.# to the master - required108.#master-user = <username>109.#110.# The password the slave will authenticate with when connecting to111.# the master - required112.#master-password = <password>113.#114.# The port the master is listening on.115.# optional - defaults to 3306116.#master-port = <port>117.#118.# binary logging - not required for slaves, but recommended 119.#log-bin=mysql-bin120.121.# Point the following paths to different dedicated disks 122.#tmpdir = /tmp/123.#log-update = /path-to-dedicated-directory/hostname 124.125.# Uncomment the following if you are using InnoDB tables 126.#innodb_data_home_dir = C:\mysql\data/127.#innodb_data_file_path = ibdata1:10M:autoextend128.#innodb_log_group_home_dir = C:\mysql\data/129.# You can set .._buffer_pool_size up to 50 - 80 %130.# of RAM but beware of setting memory usage too high131.#innodb_buffer_pool_size = 256M132.#innodb_additional_mem_pool_size = 20M133.# Set .._log_file_size to 25 % of buffer pool size134.#innodb_log_file_size = 64M135.#innodb_log_buffer_size = 8M136.#innodb_flush_log_at_trx_commit = 1137.#innodb_lock_wait_timeout = 50138.139.[mysqldump]140.quick141.max_allowed_packet = 16M142.143.[mysql]144.no-auto-rehash145.# Remove the next comment character if you are not familiar with SQL146.#safe-updates147.148.[myisamchk]149.key_buffer_size = 128M150.sort_buffer_size = 128M151.read_buffer = 2M152.write_buffer = 2M153.154.[mysqlhotcopy]155.interactive-timeoutMySQL5解压缩版windows下安装配置应用总结MSN :leizhimin@本文针对mysql-noinstall版本,也就是解压缩版的安装配置应用做了个总结,这些操作都是平时很常用的操作。